ipython - Anaconda Python cannot find an installed package whereas System Python can -
i using opensuse 13.2 , have installed google protocol buffers library python via yast; altogether packages have installed are:
libprotobuf-c0 -> c bindings libprotobuf-lite8 -> protocol buffers library libprotobuf8 -> protocol buffers library protobuf-devel -> headers & libraries python-protobuf -> python bindings
i new using anaconda , ipython notebook trying use protocol buffers there. anaconda has installed via standard bash
installer ~/anaconda
, has not modified path
. have started ipython notebook when try access protocol buffers error:
# attempted code google.protobuf import text_format # error importerror: no module named google.protobuf
however, when try importing same module when using system-installed python (installed via yast , accessed via python
@ terminal) imports without problem.
is there special need anaconda pick system-installed python libraries?
try
conda search google....
or
binstar search -t conda google....
if has compiled conda package , uploaded can install using
conda install -c https://conda.binstar.org/some_user google....
alternatively might if package availaible pipy (you have install pipy first using conda )
Comments
Post a Comment