Created
January 27, 2021 05:28
-
-
Save arkottke/a0a55342193a7b89e5d6c8f2f4ec7592 to your computer and use it in GitHub Desktop.
Proper use of conda and jupyter notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install jupyter in the base environment. | |
conda activate base | |
conda install -c conda-forge jupyterlab nb_conda_kernels jupyter_contrib_nbextensions | |
# Switch to an environment, and register it to jupyter | |
conda install ipykernel | |
python -m ipykernel install --user --name myenv --display-name "Python (myenv)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment