Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR: tensorboard 2.0.2 has requirement setuptools>=41.0.0, but you'll have setuptools 40.6.2 which is incompatible

gave this error in installation. Does this cause a problem?

ERROR: tensorboard 2.0.2 has requirement setuptools>=41.0.0, but you'll have setuptools 40.6.2 which is incompatible.

like image 303
Astraxs Avatar asked Nov 29 '19 12:11

Astraxs


3 Answers

I just did a pip install setuptools --upgrade

then

pip install tensorflow

like image 154
Aaron Close Avatar answered Oct 22 '22 23:10

Aaron Close


I had the exact same error:

ERROR: tensorboard 2.0.2 has requirement setuptools>=41.0.0, but you'll have setuptools 40.6.2 which is incompatible.

Then I did the following three steps and it worked:

1) pip uninstall tensorflow-tensorboard 2) pip uninstall tensorflow-gpu 3) pip install --upgrade tensorflow-gpu

Then somehow I found this result. It seems that it has been fixed.

Installing collected packages: tensorflow-gpu, setuptools
Found existing installation: setuptools 40.6.2
Uninstalling setuptools-40.6.2:
Successfully uninstalled setuptools-40.6.2

Successfully installed setuptools-42.0.2 tensorflow-gpu-2.0.0

like image 12
Arjjun Avatar answered Oct 23 '22 00:10

Arjjun


Uninstall TensorFlow using command pip uninstall tensorflow

Re-install it using the command pip install --upgrade tensorflow

like image 5
RanjitSubedi Avatar answered Oct 22 '22 23:10

RanjitSubedi