Conda - Installing & Running Jupyter Notebooks in Environment

Bash

#1. Activate environment
conda activate environment_name

#2. Install Jupyter
conda install jupyter

#3. Install Jupyter kernals so that environment can be used in notebook
ipython kernel install --name "environment_name" --user

#4. Run Jupyter notebook
jupyter notebook
Did you find this snippet useful?

Sign up for free to to add this to your code library