I want to install Eric with pip into a Linux environment set up with pyenv. The program works, but I can not see my packages. I can not see what the problem is.
Here is what I did
- I installed eric into a virtualenv "eric6" usind pip install eric-ide. That worked fine.
- I run eric from a direkt link to the executable in the .pyenv folder.
I add a new virtualenv
pyenv virtualenv 3.6.9 default pyenv activate default pip install numpy
Now start Eric, start a program with the line import numpy
and you will get a ModuleFileNotFound
error. Programs with no external modules work fine.
The PyPI page will not show the same list for "default" than pip list
on the command line.
What could be the problem?