Nicholaswogan / numbalsoda

Python wrapper of LSODA (solving ODEs) which can be called from within numba functions.
MIT License
91 stars 8 forks source link

Cannot import dop853 from numbalsoda #16

Closed samirop closed 2 years ago

samirop commented 2 years ago

Hi! I've just installed your library and got this error when running the code shown in the readme. ImportError: cannot import name 'dop853' from 'numbalsoda' Could I be missing a library? Thanks in advance

Nicholaswogan commented 2 years ago

I have not gotten around to updating conda and pip with a version that has dop853.

If you install from source from the main branch, then dop853 will work.

To install from source you will need a fortran compiler and C++ compiler somewhere on your computer. From the root directly just run 'python setup.py install'

samirop commented 2 years ago

Thanks for your reply. Great job with this library