I'm trying to install a python package directly from github. In my case that's SciANN. When I selected my environment in conda using conda activate myenv
and afterwards install this package as explained in this post using the following lines of code:
conda install git pip
pip install git+git://github.com/sciann/sciann.git
it is successfully installed and I get the message "Successfully built SciANN" in the end of the insatllation procedure. When I then open spyder and type import sciann
I get the error ModuleNotFoundError: No module named 'sciann'
. I also tried to use pip3
instead of pip
but this did not change something.
Have I missed something? Is this package now installed correctly into my environment myenv
?