Skip to content

Instantly share code, notes, and snippets.

@omarfsosa
Created January 28, 2021 18:09
Show Gist options
  • Save omarfsosa/435064001f0ea09543b596fc778cb81b to your computer and use it in GitHub Desktop.
Save omarfsosa/435064001f0ea09543b596fc778cb81b to your computer and use it in GitHub Desktop.
Make python environment available in jupyter notebook
conda create -n myenv python=3.6
conda activate myenv
pip install ipykernel
python -m ipykernel install --user --name myenv --display-name "Python 3.6 (myenv)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment