python - Why can't conda find pip installed module in prefix (within conda evironment) -
i used pip install resource module default conda environment on laptop: (c:\users\my_username\anaconda2). think called root. installed pip conda environment , i'm 90% sure resource installed within environment. , indeed running conda list
shows package listed within environment. here section of output:
# packages in environment @ c:\users\conna\anaconda2: # qtpy 1.2.1 py27_0 requests 2.14.2 py27_0 resource 0.2.0 <pip> rope 0.9.4 py27_1 ruamel_yaml 0.11.14 py27_1 scandir 1.5 py27_0 scikit-image 0.13.0 np112py27_0
however when run
conda update resource
i following error:
packagenotinstallederror: package not installed in prefix. prefix: c:\users\conna\anaconda2 package name: resource
how possible conda list
shows module present conda update
can't see them? noticed conda update
doesn't recognize packages <pip>
. happening?
try this;
pip install resource --upgrade
Comments
Post a Comment