个人觉得jupyter notebook简洁而且方便,但win10系统下安装和配置环境会遇到许多问题,因此这里先记录下来,我是用的是pip安装jupyter。
一、安装
pip install jupyter
直接输入指令即可,如果遇到更新提示,直接按照提示指令更新即可
出现该过程表示正在安装,时间比较长,等待就行。
二、卸载
使用pip uninstall jupyter
是卸不掉jupyter
的,因此需要安装pip-autoremove库,用这个库里的指令卸载
pip install pip-autoremove
pip-autoremove jupyter -y
出现该过程表示正在卸载。如果jupyter在使用过程中出现一些意外(比如之前我的360就莫名卸载了jupyter,但是它的一些库还在,就使用这条指令删除,亲测可行)。