johnnychen94/jill.py

Integrate with diffeqpy

ChrisRackauckas opened this issue · 3 comments

Is there a way to integrate this with https://github.com/SciML/diffeqpy to give users a function that sets up a Julia installation automatically? Right now we require users go out and install Julia, but it would be better if the package worked more like Conda.jl.

I believe this is sufficient:

from jill.install import install_julia

install_julia(confirm=True)

The log part isn't well written, so it doesn't support a quiet installation.

There might be some issue with regard to PATH, so might also worth trying out install_dir and symlink_dir keywords.

Is there a way to check if a Julia installation already exists?

Thanks, I think I got what I needed. Continuing the discussion in SciML/diffeqpy#85