根据往上找到的教程,要再windows命令行下安装jupyter,是用命令:
pip installjupyter
报错如下图:
推测是由于使用国外源,在下载过程中出错,所以换成国内清华源,使用命令如下图所示:
上图转发自:https://www.cnblogs.com/jiangxianseng/p/11722218.html
执行:pip install pip -U命令报错:
然后先执行更换python源操作,使用命令:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip -U
然后报错:
然后执行命令:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
成功!
执行命令:pip install jupyter安装jupyter,成功!
执行命令:jupyter notebook运行jupyter,成功!



