I am working in a conda environment (called python36)
I have installed a package 'bctpy' while in this environment via
pip install bctpy
When I now try to import this module (while still in this environment)
import bctpy
I receive the error:
ModuleNotFoundError: No module named 'bctpy'
When I run:
conda list
from the command prompt the module is there, but when in python I run
help()
modules
The outputs of which pip and which python are below:
(python36) bash-4.1$ which pip
/home/.conda/envs/python36/bin/pip
(python36) bash-4.1$ which python
/home/.conda/envs/python36/bin/python
It is not visible. is anyone able to explain what is going wrong?