【发布时间】:2014-10-08 02:52:33
【问题描述】:
我目前正在使用 1.6 版和 python 3.4.1 版的 django Web 应用程序进行测试,并且需要在我的机器上安装一些软件包。根据我观察到的情况,我们当前连接到代理服务器,这就是为什么我在下载其中一些时遇到问题。以下是我目前采取的行动。
1) 我已将我的 http_proxy 连接更新为http://innoproxy:8083/proxy.pac,这是我们当前的代理连接。
2) 以下是我安装 South Package 时最常出现的错误。
C:\Users\fx0.MANDAUE>pip install South
Downloading/unpacking South
Cannot fetch index base URL https://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement South
Cleaning up...
No distributions at all found for South
Storing debug log for failure in C:\Users\fx0.MANDAUE\pip\pip.log
我的问题是,我是否可以在不使用命令提示符(手动下载)的情况下安装该软件包,还是我仍然缺乏一些操作来使下载工作?我已经检查了其他可能的解决方案,但到目前为止无济于事。谢谢!
【问题讨论】:
-
我认为这个链接是你需要的:South Installation using mercurial。在此页面上,您有关于如何使用 pip 或 easy_install 以及通过文件使用 Mercurial 安装它的说明
-
@Liarez 使用 mercurial 完成安装,但它仍然给了我
abort: error:Connection reset by peer
标签: django python-3.x proxy