导入某些库并不适用于DreamPie。
例如import nltk
结果
Traceback (most recent call last):
File "", line 1, in
import nltk
ImportError: No module named 'nltk'
虽然已经安装了nltk,但可以在Python shell中导入。 DreamPie指向相同的Python安装(3.4.1)。
答案 0 :(得分:0)
似乎Path不包含已安装nltk的site-packeges的路径, 我将此路径添加到Windows中的环境变量设置中的Path变量,并通过python shell中的以下代码对其进行了修改
import sys
sys.path.append("path\\python\\Lib\\site-packages")