Es fiel mir schwer, es einzustellen, machen Sie sich also eine Notiz.
Einstellungen sind erforderlich, wenn Sie Jupyter Notebook unter dem Proxyserver verwenden.
Erstellen Sie zuerst ein Profil:
$ ipython profile create
Ändern Sie die Datei. Der Proxyserver wird im Teil von proxy.example.com:80 und proxy.example.com:443 beschrieben.
$ vi ~/.ipython/profile_default/startup/00-startup.py
---
import sys,os,os.path
os.environ['HTTP_PROXY']="http://proxy.example.com:80"
os.environ['HTTPS_PROXY']="http://proxy.example.com:443"
Stellen Sie sicher, dass die Einstellungen in der Zelle des Jupyter Notebook angezeigt werden
%env
{
...
'HTTP_PROXY': 'http://proxy.example.com:80',
...
Recommended Posts