Fetching Conda Packages Behind a Firewall
WARNING: This is unsafe!
One of the most annoying things is not being able to update software if you’re behind a network firewall that requires SSL verification. You can turn this off in Anaconda via
and for pip via
Optionally, you can also specify the package version like this:
Better yet, you can permanently set the trusted-host by adding the following to the $HOME/.pip/pip.conf file:
Alternatively, you can also temporarily disable SSL verification from the command line with:
Do not use this code! –>