Haroon Lone
Haroon Lone

Reputation: 2949

Jupyter Notebook does not work fully in Pycharm

I am following these steps to run IPython in the Pycharm IDE. On pressing run button in any cell, I do get below pop-up window

enter image description here

According to the mentioned guide (given link), On pressing OK, I should get following message

enter image description here

But, I am not getting any type of message/response. So, I am not able to see the output of any cell contents. Does anyone know why I am not getting any response on selecting OK?

System Information:

OS: MAC OS 10.10.3
 Python: 2.7.10 using Anaconda 2.3.0
 Ipython: 4.0.0
 Pycharm: pycharm community addition 2016.2

Upvotes: 1

Views: 5506

Answers (3)

user10169837
user10169837

Reputation: 1

According to this answer:

Jupyter notebook server not working with latest PyCharm 2017.2 update. How do I solve this?

You need a package named ”notebook“. I had the same issue and I solved it by installing the package.

Upvotes: 0

Jobel
Jobel

Reputation: 643

I solved following:

First I followed the reply to the issue jupyter-notebook No such file or directory: 'conda', in short you should do:

conda update nb_conda nb_conda_kernels nb_anacondacloud

Then, I ran my jupyter notebook in my browser. I took note where the Jupyter notebook was running, i.e.

The Jupyter Notebook is running at: http://localhost:8888/

Then I started a new Jupyter Notebook in PyCharm2016.2.2, and when it asked about the Jupyter Notebook URL I changed the default http://127.0.0.1:8888 to http://localhost:8888/

and finally it worked.

Upvotes: 2

jk23541
jk23541

Reputation: 57

For the PyCharm Jupyter notebooks, to see results you need to open up a jupyter notebook.

The reason why you don't just do all your code in Jupyter Notebooks is because Pycharm helps with LaTex integration and many more functions.

Upvotes: 0

Related Questions