Skip to content

Instantly share code, notes, and snippets.

@tiandiduwuxiaoxiao
Last active October 25, 2023 18:26
Show Gist options
  • Save tiandiduwuxiaoxiao/fabb692650484ce6dc30b4b088135edb to your computer and use it in GitHub Desktop.
Save tiandiduwuxiaoxiao/fabb692650484ce6dc30b4b088135edb to your computer and use it in GitHub Desktop.
install & uninstall jupyter

Install and uninstall jupyter

  1. Install jupyter
pip install jupyter
  • Launch jupyter
jupyter notebook
  1. Uninstall jupyter
pip install pip-autoremove
pip-autoremove jupyter -y
@zainrhamid
Copy link

This might help

python -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient

@tomgerke
Copy link

Adding on to @zainrhamid 's suggestion.

python -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient jupyter-server-mathjax jupyterlab-code-formatter jupyterlab-lsp nbclassic nbdime jupyterlab-git

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