[python] 安装TensorFlow问题 解决Cannot uninstall 'wrapt'. It is a distutils installed project
Posted conver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python] 安装TensorFlow问题 解决Cannot uninstall 'wrapt'. It is a distutils installed project相关的知识,希望对你有一定的参考价值。
cmd安装 pip install tensorflow
1.遇到了
ERROR: Cannot uninstall ‘wrapt‘. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
办法1:输入 pip install -U --ignore-installed wrapt enum34 simplejson netaddr
参考:https://www.cnblogs.com/xiaowei2092/p/11025155.html
2.遇到了
ERROR: tensorboard 1.14.0 has requirement setuptools>=41.0.0, but you‘ll have setuptools 39.1.0 which is incompatible.
原因: setuptools 版本太低
办法:更新setuptools版本 输入 pip install --upgrade setuptools
以上是关于[python] 安装TensorFlow问题 解决Cannot uninstall 'wrapt'. It is a distutils installed project的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 pip python 安装 tensorflow [重复]
安装tensorflow出现的python-setuptools 20.7.0问题
如何在 Windows 上的 Python 2.7 上安装 Tensorflow?