Error in import M2Crypto

7.3k Views Asked by At

I need to use M2Crypto in my code. I downloaded the library as zip file from: https://github.com/martinpaljak/M2Crypto I unzipped the file. Inside the zipped file, I found folder named: M2Crypto, I copied it, and paste it in the same directory where my code .py file resides.

I added this line

from M2Crypto import RSA, X509

But I am getting this error:

import __m2crypto ImportError: No module named '__m2crypto'

Can you help me with the right way to import external library to python code? I am using windows system and I type the code using notepad++ so please, consider this in the answer.

EDIT: I use python 3.4

2

There are 2 best solutions below

0
On BEST ANSWER

To install M2Crypto in windows, download the 2 files (x64 or x86 version depends on your system) from this link: https://github.com/dsoprea/M2CryptoWindows. Unzip the 2 files in the C: directory. Then, type this command:

C:\Python27\Scripts>pip install --egg M2CryptoWin64

Note: In the command, I used M2CryptoWin64 because this is what I installed. You might need to change this if you downloaded the x86 version.

1
On

Unfortunately, simply copying some files won't work. Part of this module is an extension written in C (the files in the SWIG directory) that needs to be compiled into a shared library called __m2crypto.

The installation procedure is covered in the INSTALL file.

Fair warning: compared to *BSD, Linux and OS-X, building open source software on ms-windows is a really painful experience. Out-of-the-box, ms-windows lacks the development infrastructure and a lot of basic software that the aforementioned systems provide and most open-source software expects.