jupyter notebook安装命令:pip install jupyter
jupyter notebook启动命令:jupyter notebook
启动时发现报错
根据错误提示,我们发现是导入markupsafe这个库引起的报错,首先我们先查看这个库是否存在
pip show markupsafe
经过查看我们发现这个库是已经安装过的,那我们尝试指定版本号覆盖安装一下这个库。
python -m pip install markupsafe==2.0.1
再次输入jupyter notebook
http://localhost:8888/ 访问网址查看效果