jupyter notebook安装报错处理

安装jupyter notebook,出现如下错误:
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
同时,在cmd命令行执行jupyter notebook提示:'jupyter' 不是内部或外部命令,也不是可运行的程序或批处理文件。

解决方案:
1使用“pip install—upgrade pip”命令进行pip版本升级。
pip install --upgrade pip

2使用“ pip install --upgrade setuptools”命令进行setuptools 版本升级。
pip install --upgrade setuptools
 

你可能感兴趣的:(Python)