Last active
February 6, 2019 08:47
-
-
Save anujonthemove/4418527b0c1c2410036ef3b69fb6f893 to your computer and use it in GitHub Desktop.
Command to add a new Jupyter kernel.
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
# add jupyter kernel | |
# if you are working inside a virtual environment, activate it and run the following command (change the names accordingly, of course!) | |
python -m ipykernel install --user --name video-analytics --display-name "Python2 (video-analytics)" | |
# list all available kernels | |
jupyter kernelspec list | |
# remove a kernel | |
jupyter kernelspec remove "kernel-name" (without quotes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment