Skip to content Skip to sidebar Skip to footer

Conda - Installing Tensorflow From A .whl File Behind A Firewall

I have got an Anaconda3 with Python 3.6 (Spyder) environments, trying to install tensorflow, however, can't utilize the standard pip installation due to company firewall. Furtherm

Solution 1:

I had some success with this in my company (which also doesn't allow internet access by Anaconda package manager)

I found this site: https://www.lfd.uci.edu/~gohlke/pythonlibs/

where you can download wheel files for a number of python packages. You can then use PIP to install the wheel packages locally .

pip install some-package.whl

as detailed in this answer

Post a Comment for "Conda - Installing Tensorflow From A .whl File Behind A Firewall"