Importerror: No Module Named Scitools.std
I installed Anaconda, but now that I wanted to use StringFunction in scitools.std I get error: ImportError: No module named scitools.std! So I did this: sudo apt-get install python
Solution 1:
apt-get install
is going to install it into the system Python, not the Anaconda Python. You need to use conda
to install packages into Anaconda.
There isn't an official scitools build for Anaconda, but I've built one and put it on binstar (I'm assuming you are using Python 2.7, 64-bit Linux). conda install -c asmeurer scitools
will get it.
Solution 2:
Solution 3:
For Python3, Use scitools3 instead
pip install scitools3
See also: wikis of scitools and pypi of scitools3
Post a Comment for "Importerror: No Module Named Scitools.std"