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.
4 Answers
You may also get pymssql2.7 library from this unofficial extensions library

- 120,166
- 34
- 186
- 219
-
The 64 bit version at that site seems to suffer from [Issue 2](http://code.google.com/p/pymssql/issues/detail?id=2), at least on my machine. – demongolem Oct 24 '12 at 17:07
If you have pip install:
pip install pymssql
To install pip (trust me its very helpful):
Download and run this python script (as admin):

- 1,189
- 14
- 21
-
For me, pip was then available in MyPythonDir\Scripts. Thanks Ravish! – Resource Mar 11 '16 at 16:04
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
, and pymssql-N.N.N-pyN.N.egg-info
. These two files and the pymssql-... folder are what needs extracting into ...\Lib\site-packages
.

- 1,085
- 11
- 17
-
Good post, elaborating on the steps of two other entries (which ideally should not be needed). Unfortunately it didn't work for me: it reported that the pymssql is installed but I wasn't able to import pymmsql (as apparently it wasn't installed; my suspision is that the provided files are currently corrupted somehow). What worked in my case (Cygwin 64bit, Python 2.7 64bit): install FreeTDS 0.91 using the cygwin installer, then installing pymssql of the github repository as described [here](https://github.com/pymssql/pymssql/issues/432#issuecomment-238257092). – taffit Oct 27 '17 at 15:51