Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Jupyter notebooks on Windows
- * Install Miniconda from https://docs.anaconda.com/free/miniconda/miniconda-install/
- * From cmd:
- ```
- miniconda3\Library\bin\conda init cmd.exe
- conda create -n jupyter
- conda activate jupyter
- ```
- * Configure channels (https://github.com/conda-forge/jupyterlab-feedstock)
- ```
- conda config --add channels conda-forge
- conda config --set channel_priority strict
- ```
- * Install jupyter
- ```
- conda install jupyterlab
- ```
- * Launch (from https://jupyter.org/install)
- ```
- jupyter lab
- ```
Advertisement
Add Comment
Please, Sign In to add comment