解决Command "python setup.py egg_info" failed with error code 问题

当执行命令时  会出现这种情况

解决Command

 Command "python setup.py egg_info" failed with error code

出现这种情况的话,应该是 setuptools 没有安装。

打开窗口出入 cmd 命令,输入

pip install setuptools

pip install  distribute

在执行命令的时候,如果出现

[WinError 5] 拒绝访问 这种情况  这是需要管理员权限的,可以直接在命令行加 --user 

pip install --user setuptools

也可以运行easy_install -U setuptools 这句命令 (推荐)

 

你可能感兴趣的:(解决Command "python setup.py egg_info" failed with error code 问题)