easy_install 作为终端启动并自行关闭,如何避免这种情况
尝试在 Windows 7 64 位上安装各种软件包并了解到 ActivePython 有帮助(因为它包括 easy_install除其他外)。
它看起来确实相当坚固。不过,我正在尝试 easy_install 一些软件包,但失败了。
问题是 easy_install.exe 实际上在新终端中启动并自行关闭,即使出现问题,我该如何避免这种情况?
有人遇到过这个问题吗?
Trying to install various packages on a Windows 7 64 bit and learned that ActivePython helps (as it includes easy_install among others).
It surely seems pretty robust. However I'm trying to easy_install a few packages and its failing.
The problem is that the easy_install.exe actually launches in a new terminal and closes on its own, even when there is a problem, how do I avoid that ?
Anyone faced this issue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许
easy_install
正尝试在另一个窗口中以管理员身份重新启动,该窗口在 easy_install 退出后立即退出。尝试从管理员提示符运行 easy_install。作为推荐 ActivePython 用户,easy_install 只能作为最后的手段;您应该首先尝试使用 PyPM(包含在 ActivePython 中)安装软件包。请参阅http://code.activestate.com/pypm/
Perhaps
easy_install
is trying to relaunch itself as Administrator in a different window which quits immediately after easy_install exits. Try running easy_install from an Administrator prompt.As a recommendation for ActivePython users, easy_install should only be used a last resort; you should first try installing packages using PyPM (included in ActivePython). See http://code.activestate.com/pypm/
尝试像这样指定命令:
c:\python27\python.exe -m easy_install Django==1.6.5v
try specifying the command like so:
c:\python27\python.exe -m easy_install Django==1.6.5v