Rodo
Rodo

Reputation: 23

Imcompatible packages when installing Tensorflow using pip

I try to install Tensorflow using this line in PowerShell (as admin):

pip install tensorflow

But received this ERROR:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. astroid 2.3.2 requires six==1.12, but you have six 1.15.0 which is incompatible.
astroid 2.3.2 requires wrapt==1.11.*, but you have wrapt 1.12.1 which is incompatible.

Also, I tried to uninstall six and wrapt using: pip uninstall six wrapt and run pip install tensorflow again but still got the same error as above.

Thank you in advance!

Upvotes: 1

Views: 1212

Answers (1)

Rodo
Rodo

Reputation: 23

I was opening Anaconda Navigator so I closed it and reopened PowerShell again, ran the install command and it went smoothly without further error.

Upvotes: 0

Related Questions