ImportError: cannot import name 'abs'
我已经尝试的修复程序正在进入Anaconda环境,并激活它 并运行以下命令:
pip uninstall tensorflow protobuf --yes
pip install --ignore-installed --upgrade tensorflow-gpu
现在错误是相同的。
答案 0 :(得分:1)
如果使用Anaconda,是否有理由在pip中进行安装? tensorflow-gpu
在anaconda中可用。试试
conda remove tensorflow*
conda remove protobuf
pip uninstall tensorflow*
pip uninstall protobuf
conda install tensorflow-gpu