简体   繁体   中英

unable to install tensorflow and wrapt obstructing

I got the solution for the same issue from this Stackoverflow earlier(couple of months back) but I forgot it.

The solution should be like this: download the wrapt package from GitHub and placed the same in c: drive \\ user profile location \\wrapt.

while installing the tensorflow package, wrapt obstructing it

pip install tensorflow

error while installing the 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.

In your case, you can either uninstall and reinstall wrap or simply upgrade.

first uninstall wrapt:

 pip uninstall wrapt

Then reinstall:

 pip install wrapt

Or simply (then you don't have to install and uninstall):

 pip install wrapt --upgrade --ignore-installed

Then:

 pip install tensorflow

updating wrapt with

pip install wrapt --upgrade --ignore-installed

(i use pip3 )

pip3 install wrapt --upgrade --ignore-installed

before installing packages "tensorflow" or "tensorflow-gpu" solved the problem for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM