今天安装tensorflow有如下报错
pip install tensorflow 报错: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.
我们可以直接忽略报错进行安装即可,执行以下命令
pip install wrapt --ignore-installed
然后再安装tensorflow则可以顺利安装完。