如果在cmd终端使用pip命令
pip install jupyter
像安装python的其他模块一样正常安装jupyter notebook时,却出现以下报错信息:
解决方案:
1、首先可以进入到Python/Scripts的文件夹目录下更新pip到最新版本
python -m pip install --user --upgrade pip
2、安装jupyter notebook
python -m pip install jupyter notebook
运行完出现Successfully installed…的字样说明安装成功。
直接输入jupyter notebook即可打开
jupyter notebook