Created
March 10, 2021 21:30
-
-
Save prrao87/eb601c6d66db623b14d15ac1754ce609 to your computer and use it in GitHub Desktop.
Commands to manage and install virtual environment for 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 python ipykernel with environment name | |
python -m ipykernel install --user --name=<my_env_name> | |
# List or uninstall existing virtual envs for Jupyter | |
jupyter kernelspec list | |
jupyter kernelspec uninstall <my_env_name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment