我安装了 Anaconda,但现在我想在 scitools.std 中使用 StringFunction 我收到错误:ImportError: No module named scitools.std!所以我这样做了:
sudo apt-get install python-scitools
仍然没有工作。如何帮助我的计算机“查找 scitools”?
感谢您的时间。
亲切的问候,马吕斯
我安装了 Anaconda,但现在我想在 scitools.std 中使用 StringFunction 我收到错误:ImportError: No module named scitools.std!所以我这样做了:
sudo apt-get install python-scitools
仍然没有工作。如何帮助我的计算机“查找 scitools”?
感谢您的时间。
亲切的问候,马吕斯
apt-get install
将把它安装到系统 Python 中,而不是 Anaconda Python。您需要使用conda
将软件包安装到 Anaconda 中。
Anaconda 没有官方的 scitools 构建,但我已经构建了一个并将其放在 binstar 上(我假设您使用的是 Python 2.7,64 位 Linux)。conda install -c asmeurer scitools
会得到它。
在蟒蛇中:
conda install --channel johannr scitools