Skip to content

Instantly share code, notes, and snippets.

@Zsailer
Created February 22, 2018 18:04
Show Gist options
  • Save Zsailer/852820f23cbdc2e931560fab6b1665f8 to your computer and use it in GitHub Desktop.
Save Zsailer/852820f23cbdc2e931560fab6b1665f8 to your computer and use it in GitHub Desktop.
conda environment + jupyter kernel

Create conda environment.

conda create -n <kernel name> pip jupyter 

Activate environment.

source activate <kernel name>

Create kernel.

python -m ipykernel install --user --name <kernel name> --display-name "<kernel name> (Python version)" 

Run jupyter and open notebook with new kernel

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