我正在运行一个内容为:
的python文件import theano.tensor as T
这给了我一个分段错误。 我正在使用anaconda。 怎么解决这个问题?
答案 0 :(得分:2)
我将scipy从版本0.17.1更新到版本0.18.0
后出现了同样的问题尝试使用conda(来自Anaconda)为theano创建一个虚拟环境,使用正确版本的scipy和numpy:
conda create --name theano_env theano python=2.7
或(对于python 3.5):
conda create --name theano_env theano python=3.5
它解决了我的问题。