Javi

Jupyter: Installing and running

Apr 29th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # Jupyter notebooks on Windows
  2.  
  3. * Install Miniconda from https://docs.anaconda.com/free/miniconda/miniconda-install/
  4. * From cmd:
  5.  
  6. ```
  7. miniconda3\Library\bin\conda init cmd.exe
  8. conda create -n jupyter
  9. conda activate jupyter
  10. ```
  11.  
  12. * Configure channels (https://github.com/conda-forge/jupyterlab-feedstock)
  13.  
  14. ```
  15. conda config --add channels conda-forge
  16. conda config --set channel_priority strict
  17. ```
  18.  
  19. * Install jupyter
  20.  
  21. ```
  22. conda install jupyterlab
  23. ```
  24.  
  25. * Launch (from https://jupyter.org/install)
  26.  
  27. ```
  28. jupyter lab
  29. ```
Advertisement
Add Comment
Please, Sign In to add comment