davidADSP / GDL_code

The official code repository for examples in the O'Reilly book 'Generative Deep Learning'

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error installing requirements.txt

dataexcess opened this issue · comments

Hi I've read halfway through your awesome book and now want to start diving into the code.
Unfortunately, I cannot get past setting things up.
After running 'pip install requirements' in the virtualenv i made, the install is aborted and the following errors appear:

ERROR: tensorflow-tensorboard 0.4.0 has requirement bleach==1.5.0, but you'll have bleach 3.1.0 which is incompatible.
ERROR: tensorboard 1.14.0 has requirement setuptools>=41.0.0, but you'll have setuptools 39.0.1 which is incompatible.

I have the feeling the interdependencies of the required modules are broken... could you check it out and fix the requirements.txt accordingly?

Thank you.

I somehow Fixed this by:

pip uninstall setuptools
running my environment again and running
sudo -H pip install -r requirements.txt

🤷🏻‍♂️