Compiling pycrypto on Win7-64

Having had occasion to compile pycrypto 2.3.1 for Win7-64 and Python 2.7.1-64, I’ll share the process, and the result.

Note 2016-02-03: This post is seriously old at this point, and pycrypto is not being actively maintained. Use pycryptodome, a fork of pycrypto, instead. It installs easily on Windows, pre-compiled or compiled from source, with good documentation on how to install it.

Compiling pycrypto on Win7-64 is very straightforward, unless you happen to use Visual Studio Express, not Visual Studio Pro. Compiling with Express takes a couple extra steps, which is what this post is about.

Preparing to compile:

  • Install VC++ 2008 SP1 Express. Needs to be 2008, not 2010 – that goes back to an old tradition that modules need to be compiled with the version that Python was compiled with, which happens to be 2008 right now. The Express version of VC++ 2008 is still available: http://www.microsoft.com/express/Downloads/#2008-Visual-CPP. If you are nervous about whether it will remain available, download the ISO.
  • Python 2.7.1 has a bug where it will get confused with the paths that MS use for Express, which happen to be different than the paths used in Pro, which breaks vcvarsall.bat when attempting to build 64-bit binaries. This is a limitation of VC++ 2008 Express. The Python distutils team offers a work-around. Check the bug at http://bugs.python.org/issue7511 to see whether the issue has been resolved already in your version of Python. If not so, grab the diff attached to that bug report and apply it to your Python main directory using “patch”. The command line for this is “patch -p0 <vcvars4.diff”.
    If you don’t have a copy of “patch” already, the Cygwin default install + patch (not patchutils) will give you patch.

Now you’re ready to compile. This is pretty simple from here on out:

  • pycrypto should be unpacked somewhere other than your Python dir, say c:\temp
  • Then, from within the pycrypto directory, run these commands:
    • python setup.py build -c msvc
    • python setup.py install
    • python setup.py test

In my case, Python 3.1 is actually my registered default version, and I have python 2.7 renamed as python27.exe and pythonw27.exe. The build and install still works fine using python27 to invoke instead of python. Both my Python dirs are in the %path% to make my life easier. No PYTHON* env variables have been set.

Join the Conversation

15 Comments

  1. Thanks! I was looking all over for this and was afraid that I would have to figure out how to compile it myself.

  2. Following your steps PyCrypto installed perfectly. Thanks for this really useful advice!

  3. Works perfectly!
    It took me so long to find the solution… You should ask PyCrypto to add a link to your post 😉
    Thanks a lot.

  4. Hello I was looking for the pcCrypto 64-bit. Founding yur page gave me a lot of hope, but seems the link to the actually complied library is dead.
    Would it possible to reupload the lib, please? 🙂

  5. Hi, thanks for your work! I unpacked the library, but it gave me an error – DLL load failed: %1 is not a valid Win32 application.
    Maybe I am missing some steps?

  6. Alternatively, simply download and install ActivePython, then run…

    pypm install pycrypto

  7. I believe it is worth mentioning the path I took
    Installed the prerequisites, (VC++ 2008 SP1 Express and WinSDK)
    used “https://code.google.com/p/python-patch/” to patch the diff
    and finally “pip install pycrypto”

  8. Can someone please elaborate on the patch process? I tried the process outlined in the main article I don’t know what to do with Cygwin once I install it. I also tried downloading the py file from “https://code.google.com/p/python-patch/” as mentioned in the previous comment but I’m uncertain as to what to do next. A nOOb worthy walkthrough would be appreciated. Thanks in advance

  9. This is what I did for patching (Followed another blog post whose URL I’ve since lost:

    if you downloaded the patch.py and diff file in c:\Python27 just run:

    python patch-11.01.py vcvars3.diff

    finally install using pip (google this and follow directions to download):

    pip install pycrypto

Leave a comment

Leave a reply to Zuse Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.