Pergunta

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-scitools

Still didn't work. How can I help my computer "find scitools"?

Thank you for your time.

Kind regards, Marius

Foi útil?

Solução

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.

Outras dicas

For Python3, Use scitools3 instead

pip install scitools3

See also: wikis of scitools and pypi of scitools3

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top