Skip to content

Instantly share code, notes, and snippets.

@ShannonScott
Last active September 2, 2021 22:24
Show Gist options
  • Save ShannonScott/b70ce805767a8a3ca3819e4f2809205f to your computer and use it in GitHub Desktop.
Save ShannonScott/b70ce805767a8a3ca3819e4f2809205f to your computer and use it in GitHub Desktop.
[Install Anaconda Environment for Jupyter] Make a conda environment available in Jupyter #tags: jupyter, python, anaconda
source activate myenv
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"

Found here: Conda environments not showing up in Jupyter Notebook

Notes

  • Make sure you install jupyter in the environment to be added.
  • Make sure the environment to be installed is activated!

Uninstall kernel

jupyter kernelspec uninstall <kernel-name>

See: remove kernel on jupyter notebook

Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment