当我尝试在tensorlflow中运行代码时,出现此错误。我怎样才能解决这个问题?

时间:2018-08-06 12:20:46

标签: tensorflow

ImportError: cannot import name 'abs'

我已经尝试的修复程序正在进入Anaconda环境,并激活它 并运行以下命令:

pip uninstall tensorflow protobuf --yes

pip install --ignore-installed --upgrade tensorflow-gpu 

现在错误是相同的。

1 个答案:

答案 0 :(得分:1)

如果使用Anaconda,是否有理由在pip中进行安装? tensorflow-gpu在anaconda中可用。试试

conda remove tensorflow*
conda remove protobuf
pip uninstall tensorflow*
pip uninstall protobuf
conda install tensorflow-gpu