jsalvatier / scikits.bvp_solver

Python package for solving two-point boundary value problems that wraps BVP_SOLVER
http://packages.python.org/scikits.bvp_solver/
14 stars 6 forks source link

No module named "solver" #8

Open dhalpern1 opened 5 years ago

dhalpern1 commented 5 years ago

Hi, I followed the installation instructions and used easy_install on MACOS and also also on linux. However, I get the following error on both machines by running one of the test programs (which I renamed test1.py):

Traceback (most recent call last): File "test1.py", line 1, in import scikits.bvp_solver File "/usr/local/lib/python3.7/site-packages/scikits.bvp_solver-1.1-py3.7-macosx-10.13-x86_64.egg/scikits/bvp_solver/init.py", line 1, in ModuleNotFoundError: No module named 'solver'

Any help would be appreciated. Thanks.

David

wingkitlee0 commented 5 years ago

have you tried the git version and use: pip install -e . or python setup.py install ?

if that does not work, you can try my fork repo: https://github.com/wingkitlee0/scikits.bvp_solver/tree/master as I might have fixed a few things for python 3.

dhalpern1 commented 5 years ago

I tried pip and setup.py, and both gave the same error messages. I will try your fork. Thanks.

wingkitlee0 commented 5 years ago

Feel free to post back your result. It will be helpful for others to know if it works or not. Thanks!

Felimatus commented 4 years ago

Hi there! I hav the same problem, I was trying to use py_bvp, which was unsuccessful. I received "ImportError: No module named bvp_solverf", so I installed scikits.bvp_solver but eveytime I received the same message, ModuleNotFoundError: No module named 'solver'. Any help?

wingkitlee0 commented 4 years ago

Hi, feel free to try my branch above.

jsalvatier commented 4 years ago

Yes, I think Kit's repo is the thing that's working right now. Kit and I were going to arrange for him to take over the main repo, but haven't gotten around to it yet.

On Thu, Jun 11, 2020 at 8:35 AM Kit Lee notifications@github.com wrote:

Hi, feel free to try my branch above.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jsalvatier/scikits.bvp_solver/issues/8#issuecomment-642741414, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACCBMOTRLJDP37YQJYO673RWD2T7ANCNFSM4HW7VWHA .

Felimatus commented 4 years ago

Hi, thank you for your replies :D To be honest, I can check how it's working, I installed it using "python setup.py install" with the git version... and I still receive the same message....