How to uninstall jupyter

后端 未结 9 712
独厮守ぢ
独厮守ぢ 2020-11-30 20:53

I have been trying to uninstall jupyter

I have tried the following commands

pip uninstall jupyter
pip3 uninstall jupyter

and

9条回答
  •  醉梦人生
    2020-11-30 21:11

    When you $ pip install jupyter several dependencies are installed. The best way to uninstall it completely is by running:

    1. $ pip install pip-autoremove
    2. $ pip-autoremove jupyter -y

    Kindly refer to this related question.

    pip-autoremove removes a package and its unused dependencies. Here are the docs.

提交回复
热议问题