How to uninstall jupyter

后端 未结 9 689
独厮守ぢ
独厮守ぢ 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:25

    For python 3.7:

    1. On windows command prompt, type: "py -m pip install pip-autoremove". You will get a successful message.
    2. Change directory, if you didn't add the following as your PATH: cd C:\Users{user_name}\AppData\Local\Programs\Python\Python37-32\Scripts To know where your package/application has been installed/located, type: "where program_name" like> where jupyter If you didn't find a location, you need to add the location in PATH.

    3. Type: pip-autoremove jupyter It will ask to type y/n to confirm the action.

    0 讨论(0)
  • 2020-11-30 21:28

    If you are using jupyter notebook, You can remove it like this:

    pip uninstall notebook
    

    You should use conda uninstall if you installed it with conda.

    0 讨论(0)
  • 2020-11-30 21:29

    For Mac OS, you may use the below command in order to remove files manually.

    sudo rm -rf /usr/local/bin/jupyter
    
    0 讨论(0)
提交回复
热议问题