gpt4 book ai didi

python - 导入 theano 给出 AttributeError : module 'theano' has no attribute 'gof'

转载 作者:太空狗 更新时间:2023-10-29 21:20:39 29 4
gpt4 key购买 nike

我有 python 3。我安装了“Theano”前沿和“Keras”使用

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git

还有

pip install --upgrade git+git://github.com/Theano/Theano.git

pip install git+git://github.com/fchollet/keras.git

但是当我尝试导入 Theano 时,我收到以下错误:

AttributeError: module 'theano' has no attribute 'gof'

我在网上寻找解决方案,但一无所获......

这是我收到错误的代码片段(最后一行产生错误):

import sys
import numpy as np
import pandas as pd
from sklearn import preprocessing

from keras.models import Sequential

由于我没有足够的 python 经验,我完全迷路了,不知道该怎么做......

如有任何帮助,我们将不胜感激。

最佳答案

这个问题是由于 theano 安装失败引起的,与 keras 本身无关。

此错误似乎是由于安装的 theano 版本存在冲突,正如 this answer 中所建议的那样一个相关的问题。

一个简单的方法应该可以解决问题,而不必摆弄已安装的版本,所有这些都是使用 conda 作为包管理器并让它完成肮脏的工作。如果您选择这样做,请注意您应该使用它来管理所有 python 模块(即使使用最新版本,您也可以使用 anaconda 本身附带的 pip 安装包)。

参见 the official documentation了解如何安装 Anaconda。设置好 anaconda 后,您只需使用 conda install theano 即可安装 theano。

使用 conda 通常也可以方便地安装某些特定应用程序所需的包,例如您的情况下的 Keras,在与 python 安装的其余部分隔离的环境中,以便于维护。阅读 relevant docs看看这是如何工作的。

关于python - 导入 theano 给出 AttributeError : module 'theano' has no attribute 'gof' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41174995/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com