Cannot Uninstall Requirement Jupyter, Not Installed
I have installed jupyter but want to uninstall it. It however is not possible: $ pip freeze | grep jupyter $ pip3 freeze | grep jupyter jupyter-client==5.1.0 jupyter-console==5.2.
Solution 1:
in case you were trying to uninstall jupyter because jupyter throwing below error while running jupyter notebook
zsh: /usr/local/bin/jupyter: bad interpreter: /usr/local/opt/python/bin/python3.6: no such file or directory
,
u can fix that without uninstalling jupyter using below command
Python3 : pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
Python2 : pip install --upgrade --force-reinstall --no-cache-dir jupyter
reference : https://github.com/jupyter/jupyter_core/issues/127
Above steps worked for me in Mac
Solution 2:
The scripts you mention are provided by the pip package named notebook
, which can be installed as part of the jupyter metapackage, but can also be installed standalone. Try
sudo -H pip uninstall notebook
Post a Comment for "Cannot Uninstall Requirement Jupyter, Not Installed"