Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm 2019.1 CE: No option to create/edit Jupyter Notebook (*.ipynb) files?

I updated Pycharm CE from 2018.3 to 2019.1 and lost ability to create or open an existing jupyter notebook file. The existing .ipynb file opens as a text file rather than a jupyter notebook with cells. I could open and view it fine on 2018.3.

I am new to PyCharm and indeed also jupyter notebooks, please let me know if I need to include more information.

This is what I already tried on the 2019.1 version:

  1. Created a new project and installed jupyter package for the interpreter.
  2. Started jupyter notebook server with the command (jupyter notebook) in the PyCharm terminal, with the working directory set to cwd.
  3. Un-installed and re-installed PyCharm 2019.1
like image 666
Sanu Kurien Avatar asked Apr 22 '19 03:04

Sanu Kurien


2 Answers

You can type in Terminal:

pip install jupyterlab
pip install notebook
jupyter notebook

and Notebook will be opened in browser

like image 109
cheparsky Avatar answered Oct 08 '22 00:10

cheparsky


So as per the support staff from JetBrains:

Starting with 2019.1 the PyCharm Community Edition (CE) does not support Jupyter Notebook. This functionality has been moved to the professional version only.

like image 45
Sanu Kurien Avatar answered Oct 08 '22 00:10

Sanu Kurien