windows上徹底刪除jupyter notebook的實現
阿新 • • 發佈:2020-04-14
windows刪除jupyter notebook 沒辦法的辦法
pip uninstall jupyter -y
pip uninstall jupyter_core -y
pip uninstall jupyter-client -y
pip uninstall jupyter-console -y
pip uninstall notebook -y
pip uninstall qtconsole -y
pip uninstall nbconvert -y
pip uninstall nbformat -y
不過好像也可以直接
pip uninstall jupyter,notebook,jupyter_core,jupyter-client,jupyter-console,qtconsole,nbconvert,nbformat -y
補充知識:jupyter notebook出問題,重灌方法
For Python 2
sudo pip install --upgrade --force-reinstall --no-cache-dir jupyter
For Python 3
sudo pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
這應該重新安裝PyPi中的所有內容。這應該解決這個問題。
以上這篇windows上徹底刪除jupyter notebook的實現就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。