0


I am running Debian Bookworm OS and installed Juypter using the following command
sudo pip3 install --break-system-packages jupyter
and would like to uninstall the program, I have tried the following options but none of them seem to work:

  1. sudo apt get remove
  2. pip uninstall juypter
  3. sudo -H python3 -m pip uninstall jupyter_core jupyter_qtconsole nbformat
  4. pip uninstall $(pip freeze | grep jupyter )

Could someone help me uninstall the program?
Thanks Daniel

1 Answer 1

2

Since you installed using

sudo pip3 install --break-system-packages jupyter

the appropriate command to uninstall Jupyter is

sudo pip3 uninstall jupyter
1
  • 1
    … just as a point-out: Dear asker, you used --break-system-packages when you installed something via pip. That literally means what it says. If after uninstalling important functionality is (still) broken, you know what did that :) You might want to check the integrity of all your installed packages now, and reinstall these that pip might have broken. Commented Jul 11 at 8:58

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.