Closed bolzzzz closed 5 years ago
After installation, it can be imported anywhere. Could you assure that it is installed properly? For example, in your terminal type pip list
and you should see geppy
in the list. If it is true, then in your program can you run import geppy
successfully?
geppy installed:
under the dir of geppy I can import successfully:
cd to another dir, error happens:
Currently I copy geppy files to my project dir so that I can use geppy. But it will be more convenient if you can fix this. Thanks!
Yes, you are right. The error can be reproduced on Ubuntu, but not on Windows. I did't find the reason yet. However, a temporary solution is:
pip uninstall geppy
on your system.pip install -e .
(the editing mode). I have tested it on Ubuntu. It should work now.
Thank you very much!
Hi. I installed geppy following the instructions in readme, however if I cd to another project folder I can't import geppy. The error is
ModuleNotFoundError: No module named 'geppy.core'
Currently after installing geppy it can only be imported from its folder?