如何使用 python 2.7 在 Windows 上安装 pymssql?
似乎还没有这样的二进制文件。 googlecode 上有一个问题: http://code.google.com/p/pymssql/issues/detail ?id=12 但我不知道如何处理所提供的这些文件。
It seems that there are no such binaries yet.
There is an issue on googlecode:
http://code.google.com/p/pymssql/issues/detail?id=12
but i cannot figure out what to do with those files provided.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您还可以从这个非官方扩展库
http://www.lfd.uci.edu 获取 pymssql2.7 库/~gohlke/pythonlibs/#pymssql
You may also get pymssql2.7 library from this unofficial extensions library
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pymssql
如果你有 pip 安装:
pip install pymssql
要安装 pip(相信我,它非常有帮助):
下载并运行此 python 脚本(以管理员身份):
https://bootstrap.pypa.io/get-pip.py< /p>
If you have pip install:
pip install pymssql
To install pip (trust me its very helpful):
Download and run this python script (as admin):
https://bootstrap.pypa.io/get-pip.py
将内容提取到 Python27\Lib\site-packages 目录中。
Extract the contents into the Python27\Lib\site-packages directory.
将你和黄大卫的答案结合起来就会成功;以下是一些可能对初学者有所帮助的进一步说明:
请务必下载与您的 Windows 位数相匹配并且与您正在运行的 Python 版本相匹配的软件包。我在 pymssql wiki 页面上注意到有关 x64 在 Windows 上不可用的注释,因此如果您选择这些软件包,请进行良好的测试。
当您注意到 Christoph Gohlke 软件包都是 exe 时,可能会感觉有点粗略。我使用 WinRAR 打开自解压程序。存档内有一个 PLATLIB 文件夹,它本身包含两个文件和一个文件夹:
_mssql.pyd
、pymssql.pyd
和pymssql-NNN-pyN.N。鸡蛋信息
。 这两个文件和 pymssql-... 文件夹需要提取到...\Lib\site-packages
中。Combining YOU and David Huang's answers will bring success; here are some further notes that may help a beginner:
Be sure to download the package that matches the bitness of your windows and also matches the version of Python you are running. I noticed on the pymssql wiki page a note about x64 not being available on Windows so test well if you choose those packages.
It may feel a little sketchy when you notice Christoph Gohlke packages are all exe's. I used WinRAR to open the self-extractor. Inside the archive is a PLATLIB folder which itself contains two files and a folder:
_mssql.pyd
,pymssql.pyd
, andpymssql-N.N.N-pyN.N.egg-info
. These two files and the pymssql-... folder are what needs extracting into...\Lib\site-packages
.