davidADSP / GDL_code

The official code repository for examples in the O'Reilly book 'Generative Deep Learning'
GNU General Public License v3.0
1.47k stars 739 forks source link

Error installing requirements.txt #49

Open dataexcess opened 4 years ago

dataexcess commented 4 years ago

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.

dataexcess commented 4 years ago

I somehow Fixed this by:

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

🤷🏻‍♂️