Getting Output With Ipython Notebook
Solution 1:
The return output to the notebook was being blocked by Sophos Endpoint Security and Control.
Disabling "Sophos Web Intelligence Service" in services.msc worked, but it was not ideal since it turns off my web intelligence or whatever ... I don't really want to make myself more susceptible to bad stuff...
So the solution is to:
Open your Sophos Endpoint Security and Control Panel from your tray or start menu.
Select "Configure" -> "Anti-virus" -> "Authorization" from the menu at the top.
Select the websites tab.
Click the "Add" button and add 127.0.0.1 and localhost to the "Authorized websites" list.
Restart the computer
Output works now :)
Solution 2:
I am in the same situation as the OP and just found out that the IPython notebook works (without disablying Sophos) when it is started with
ipython notebook --ip=localhost
Solution 3:
I had this problem. I found two ways of fixing it, though your mileage may vary:
I killed the software firewall process.
I configured the notebook to accept HTTP connections from anywhere (with a password and a secure connection, obviously). Details of how to do this can be found on the IPython website.
I don't know why the second one worked. My best guess is that the combination of the firewall and a NAT made connections to localhost look, to the notebook, as though they were coming from elsewhere.
Post a Comment for "Getting Output With Ipython Notebook"