pip install jupyter notebook运行不了
时间: 2023-10-22 16:10:49 浏览: 200
jupyter notebook运行命令没有反应,右上报错这个
5星 · 资源好评率100%
可能是您的pip版本过低或者没有安装jupyter notebook。您可以尝试使用以下命令更新pip并安装jupyter notebook:
1. 更新pip:`pip install --upgrade pip`
2. 安装jupyter notebook:`pip install jupyter notebook`
如果您已经安装了jupyter notebook,可以尝试重新安装:
1. 卸载jupyter notebook:`pip uninstall jupyter notebook`
2. 重新安装jupyter notebook:`pip install jupyter notebook`
阅读全文