All Guides

Установка Jupyter Notebook

Установите Jupyter Notebook для интерактивной разработки.

Beginner10 мин.

Setup Steps

1. Install Jupyter via pip:

pip install jupyter

2. Install JupyterLab (advanced interface):

pip install jupyterlab

3. Start Notebook:

jupyter notebook

4. Start JupyterLab:

jupyter lab

5. Browser opens automatically (http://localhost:8888)

6. Configure for remote access:

jupyter notebook --generate-config

7. Set a password:

jupyter notebook password

8. Start for remote access:

jupyter notebook --ip 0.0.0.0 --port 8888 --no-browser

9. Useful extensions:

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

10. Jupyter in VS Code: .ipynb files are automatically supported with the Python extension