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发布于 2016-05-11 08:18:14
把我的pip升级到最新版本似乎就能完成这项工作。
如本--index-url=http://pypi.python.org/simple/ --trusted-host pypi.python.org所述,也需要使用post。
https://stackoverflow.com/questions/37139626
复制相似问题