当我尝试使用Python 2.7在Windows 7上使用PowerShell安装新模块时,我收到一条错误消息,指出Python已停止工作。像这样: installing nose directly from pip。如上面的屏幕截图所示,我的命令提示符包含以下内容:
> python -m pip install nose
Collecting nose
...然后弹出一个Windows对话框,说“python.exe已停止工作”,提供在线检查解决方案。
我可以在下载后安装模块,但在安装后仍然会收到错误消息:installing nose from the wheel file
> python -m pip install .\nose-1.3.7-py2-none-any.whl
Processing d:\python\nose-1.3.7-py2-none-any.whl
Collecting installed packages: nose
Successfully installed nose-1.3.7
...但是,相同的“python.exe已停止工作”对话框出现。
当我尝试升级某个模块时,我也遇到了同样的错误。
我该如何解决这个问题?