mhammo30

Results 2 comments of mhammo30

I was getting the same error running Ubuntu 18 in Windows Subsystem for Linux 2. I had to configure the jupyter `c.NotebookApp.ip` setting so I could access the notebooks from...

@tonydeck0506 here is the code I added to my jupyter_notebook_config.py that resolved the WSL's IP address at notebook startup. ``` python import netifaces as ni ip = ni.ifaddresses('eth0')[ni.AF_INET][0]['addr'] c.NotebookApp.ip =...