C:\>pip install --proxy "http://dcullen:password@1.2.3.4:80" pymssql
Collecting pymssql
Could not find a version that satisfies the requirement pymssql (from versions
: )
No matching distribution found for pymssql
我正在尝试使用上面的命令来安装pymssql模块。我可以通过我的代理安装其他模块,所以我认为代理不是问题。
Python版本: Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32
我也尝试下载并安装64位轮文件,但出现以下错误:
C:\>pip install pymssql-2.1.2-cp27-cp27m-win_amd64.whl
pymssql-2.1.2-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform
答案 0 :(得分:1)
将我的点数升级到最新版本似乎可以胜任。
如post所述,还需要使用--index-url=http://pypi.python.org/simple/ --trusted-host pypi.python.org
。