Sulla base di this link.
È necessario modificare il server del notebook Jupyter env. Creare un file denominato 00-something.py
sotto il profilo server notebook Jupyter e aggiungere quanto segue:
Ad esempio:
vi /.jupyter/profile_myserver/startup/00-startup.py
(o su Windows aprire "C:/Users/tuo username /.jupyter/ profile_myserver/startup/00-startup.py" nel vostro editor di scelta)
e aggiungere
import sys,os,os.path
os.environ['HTTP_PROXY']="http://proxy.example.com:80"
os.environ['HTTPS_PROXY']="https://proxy.example.com:443"
si c un confermare le variabili env eseguendo
%env
in una cella e l'uscita
{'CLICOLOR': '1',
'GIT_PAGER': 'cat',
'HOME': '/home/jay',
'HTTP_PROXY': 'http://proxy.example.com:80',
..
Provare a
import requests
requests.get("http://google.com")
Se si ottiene una risposta [200] poi si sono tutti insieme.
fonte
2016-04-27 08:38:32
Ho risolto il problema impostando le variabili di ambiente 'HTTPS_PROXY' e' HTTPS_PROXY', _correctly_. Il mio HTTPS era errato e non funzionava allo stesso modo. –