I'm installing tensorflow-gpu on centos6.5(python3.5) which requires tensor-board which requires bleach==1.5.0 which requires:
Collecting html5lib!=0.9999,!=0.99999,<0.99999999,>=0.999 (from bleach==1.5.0)
so I installed html5lib 0.9999999(7 nines) from source:
python setup.py install
And I verified the installation by import html5lib in python:
Python 3.5.0 (default, Sep 10 2017, 00:16:28)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import html5lib
>>>
seems successful. Then I tried to install bleach1.5.0:
$ sudo pip install bleach-1.5.0-py2.py3-none-any.whl
Processing ./bleach-1.5.0-py2.py3-none-any.whl
Collecting html5lib!=0.9999,!=0.99999,<0.99999999,>=0.999 (from
bleach==1.5.0)
And error occured :
Could not find a version that satisfies the requirement
html5lib!=0.9999,!=0.99999,<0.99999999,>=0.999 (from bleach==1.5.0) (from
versions: )
No matching distribution found for html5lib!=0.9999,!=0.99999,
<0.99999999,>=0.999 (from bleach==1.5.0)
For some reason the installing computer has no network connection. So I download the required whl files and tar.gz from another computer and upload it to the installing computer. I also tried html5lib 0.999, which didn't work either and report the same error. I refered this oneenter link description here, and ensure that six 1.10.0 has been installed.