Tüm Rehberler

Jupyter Notebook Kurulumu

Jupyter Notebook'u kurun ve interaktif Python geliştirme ortamını kullanın.

Başlangıç10 dk

Kurulum Adımları

1. Jupyter'ı pip ile kurun:

pip install jupyter

2. JupyterLab'ı kurun (gelişmiş arayüz):

pip install jupyterlab

3. Notebook'u başlatın:

jupyter notebook

4. JupyterLab'ı başlatın:

jupyter lab

5. Tarayıcı otomatik açılır (http://localhost:8888)

6. Uzaktan erişim için yapılandırma:

jupyter notebook --generate-config

7. Şifre belirleyin:

jupyter notebook password

8. Uzaktan başlatma:

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

9. Faydalı eklentiler:

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

10. VS Code'da Jupyter: Python eklentisini yüklediğinizde .ipynb dosyaları otomatik desteklenir