Hi community,
I’m trying to write a Python/R wrapper for my Julia package. Initially I was following DifferentialEquations.jl’s example via diffeqr and diffeqpy, but I’m encountering major obstacles because:
I want R/Python users to install the R/Python wrappers without ever worrying about installing Julia. Is this requirement too naive?
- For R, I can’t automatically install Julia with JuliaCall, even though it seems to be a supported feature, see this issue. For what it’s worth, my attempt at building an R wrapper is available here.
- For Python, I haven’t tried writing a wrapper yet, but in all the examples that I know of (including diffeqpy), the installation instructions always start with first install Julia…
I could recommend Python/R users to first install Julia, but to me that seems quite unattractive. Do I have any other options?