0

我早些时候(几个月前)从这个 Stackoverflow 获得了相同问题的解决方案,但我忘记了。

解决方案应该是这样的:从 GitHub 下载 wrapt 包,并将其放在 c:drive\user profile location\wrapt 中。

在安装 tensorflow 包时,包裹阻碍它

pip install tensorflow

安装张量流时出错

Installing collected packages: wrapt, tensorflow Found existing installation: wrapt 1.10.11 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.

4

1 回答 1

1

在您的情况下,您可以卸载并重新安装 wrap 或简单地升级。

首先卸载包装:

 pip uninstall wrapt

然后重新安装:

 pip install wrapt

或者简单地说(那么您不必安装和卸载):

 pip install wrapt --upgrade --ignore-installed

然后:

 pip install tensorflow
于 2019-08-06T18:28:05.000 回答