我想安装tensorflow2.0.0,但我甚至不能安装tensroflow1.14.0。
我使用的是macbook pro。我一直遇到一些包版本不兼容的问题。然后,我尝试卸载某些包,然后重新安装它们,但不起作用。
错误消息:
ERROR: thinc 6.12.1 has requirement msgpack<0.6.0,>=0.5.6, but you'll have msgpack 0.6.1 which is incompatible.
ERROR: thinc 6.12.1 has requirement wrapt<1.11.0,>=1.10.0, but you'll have wrapt 1.11.2 which is incompatible.
Installing collected packages: wrapt, tensorflow
Found existing installation: wrapt 1.10.10
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.发布于 2019-09-30 19:14:37
执行以下命令:
pip install wrapt==1.10.0 --ignore-installedhttps://stackoverflow.com/questions/57364228
复制相似问题