-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
python -V
Python 3.5.2
pip --version
pip 8.1.1 from /usr/local/python3.5.2/lib/python3.5/site-packages (python 3.5)
The server can NOT connect the Internet so I need to install tensorboard offline(you should ignore the http connection error);
I download the package tensorflow_tensorboard-0.4.0rc1-py3-none-any.whl from pypi.python.org and rz to the server then
pip3 install tensorflow_tensorboard-0.4.0rc1-py3-none-any.whl
Processing ./tensorflow_tensorboard-0.4.0rc1-py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): six>=1.10.0 in /usr/local/python3.5.2/lib/python3.5/site-packages (from tensorflow-tensorboard==0.4.0rc1)
Collecting futures>=3.1.1 (from tensorflow-tensorboard==0.4.0rc1)
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7f08f799cb38>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/futures/
AFAIK the futures package only used in Python 2.x and Python 3.5 has concurrent.futures.
So the error means that I need to install futures>=3.1.1 on my Python 3.5 env but in fact you can not do that.
Anyone has any ideas?
julian-carpenter, MarcosCosmos and koupeng