Ipython Notebook Windows 10

Active1 year, 10 months ago

Beginning with version 6.0, IPython stopped supporting compatibility with Python versions lower than 3.3 including all versions of Python 2.7. If you are looking for an IPython version compatible with Python 2.7, please use the IPython 5.x LTS release and refer to its documentation (LTS is the long term support release).

  • Installing Jupyter Notebook on Windows 10 Mike Levin, SEO in NYC. Install Anaconda, Jupyter Notebook, Spyder on Windows 10. Jupyter Notebook Tutorial / Ipython Notebook Tutorial.
  • I am trying to open Jupyter Notebook on Windows 10 and I am having trouble. I already downloaded and installed it. When I click on the Jupyter Notebook icon in my start menu, a black terminal appears titles Jupyter Notebook. Then I just disappears after that like nothing happened. Things I have done to combat this issue.

I have spent a week searching and trying different solutions with no luck. I've seen several others having the same problems going back over a year.

The issue:

Windows 10 Pro build 15063.674

I'm using the latest Anaconda 5 build with Python 3.6.2 and all the packages are updated to most recent.

Running Jupyter Notebook, after some time, python will crash with a dialog 'python has stopped working'. This seems to happen after the notebook has been open for awhile, but I haven't been able to pinpoint an exact time. It's longer than 15 minutes but I've had it crash after a couple hours too.

The crash happens whether or not the notebook is in use, but most of the time, it's been while it's idle.

The console contains several lines like this:

I had been using everything with no issues, on a daily basis for months prior to this. I honestly have no idea what could have changed other than Windows Automatic updates.

What I've tried:

  • updating anaconda
  • updating all packages
  • updating python
  • full clean removal then reinstall of anaconda, python, and all packages
  • updating everything again
  • removing pyzmq and Jupyter then reinstalling
  • disabling Windows Defender
  • attempted to revert pyzmq on a long shot to 13.1.0 but the build failed
  • I've also tried using both conda and pip for installing/removing

Threads I've read:

Ipython notebook

Any suggestions on fixing this?

user3220892
user3220892user3220892

2 Answers

From the first issue thread you linked, it looks like this issue is with ZeroMQ, with little hope for resolution. One poster (UniversalAE) in that thread seemed to have success with replacing ZeroMQ with RabbitMQ. Absent an update to ZeroMQ that resolves this, or any specific requirement for ZeroMQ, I would advise doing the same, i.e. swap out ZeroMQ for RabbitMQ.

F. Stephen QF. Stephen Q
3,5041 gold badge15 silver badges38 bronze badges

The solution was to uninstall a program called Networx.

I don't understand the error myself but the person I got the solution from linked this post: https://github.com/Microsoft/WSL/issues/1554#issuecomment-339743927

user3220892user3220892

Not the answer you're looking for? Browse other questions tagged pythonipythonanacondajupyterpyzmq or ask your own question.

Active9 months ago

I am trying to open Jupyter Notebook on Windows 10 and I am having trouble. I already downloaded and installed it. When I click on the Jupyter Notebook icon in my start menu, a black terminal appears titles Jupyter Notebook. Then I just disappears after that like nothing happened.

Things I have done to combat this issue:

  • I downloaded VirtualBox with Ubuntu and downloaded the Linux version there. However, it stated it could not be installed since it was not a 64-bit system. I tried to download the 32 bit version but the download always failed.
    • Next I add the the link http://localhost/* to my Kapersky Internet anti-virus exceptions page thinking it was preventing Jupyter from opening. This didn't work and turning off the firewall completely also didn't work.

Any help would be great help!

SamSam

2 Answers

As mentioned by @cricket_007, you have to run jupyter first before opening notebooks. From the terminal, run:

After a few seconds, a server will start. If your dashboard does not open automatically, point your browser to http://localhost:8888. Note: if you installed Jupyter with Anaconda, there should be a shortcut you can click to do all of the above.

The dashboard will point to your default working directory. Place notebooks in this directory or navigate to your notebook's directory to open it through the browser.

Should you wish to change the default working directory, see more on configuring notebook paths in the docs.

Install Ipython Notebook Windows 10

pylangpylang
17.1k5 gold badges58 silver badges63 bronze badges

There are several ways to use jupyter notebook under windows, especially windows 10 professional.

Ipython Notebook Windows 10 Charger

My favorite way is the lovely ubuntu subsystem of windows 10. You can install it directly from the app store, which is free for all windows 10 users. Then install jupyter notebook from the subsystem:

or you can just do apt install python3-dev python3-pip jupyter

then just run

open any windows browser, copy paste the localhost.... thing from ubuntu terminalthen you can using jupyter notebook with a linux core.

TheoremTheorem

Not the answer you're looking for? Browse other questions tagged jupyter-notebook or ask your own question.