Using jupyter laptop in pycharm - no such laptop

I am trying to use jupyter notebook from PyCharm 2016.1. I open the previously created iPython laptop, click in the code cell and launch it. I will be prompted to run jupyter notebook by default and click OK. Here are the error messages from the Run window:

[C 13:04:23.979 NotebookApp] Bad config encountered during initialization:
The Jupyter HTML Notebook.
[C 13:04:23.979 NotebookApp] No such notebook dir: 'C:\\Users\\cb4\\Documents\\python'

iPython Notebook is included in PyCharm with a default URL.

+6
source share
3 answers

Jupyter jupyter_notebook_config.py. C:\Users\<user>\.jupyter Windows ~\.jupyter Linux. c.NotebookApp.notebook_dir , . , :

jupyter-notebook --notebook-dir=<path>

<path> Windows, .

iPython jupyter, jupyter iPython. , , iPython, jupyter.

, jupyter /:

jupyter --paths
+6

:

jupyter notebook --generate-config

: http://jupyter-notebook.readthedocs.io/en/stable/config.html

. , , .

+5

:

cmd

:

jupyter notebook --config=/home/john/mystuff/jupyter_notebook_config.json

, : , Anaconda Jupyter Lab

  • C:/
  • , Python3, / ishgested, Pyhon C: /Python, c: /User/.../Python, Jupyter usin: pip install Jupyter ** get-pip.py, pip
  • Sometimes the jupyter_notebook_config.py file is missing. To create the jupyter_notebook_config.py file after installing python,
  • You can use the following command line:

jupyter notebook --generate-config

-2
source

All Articles