Chuyển đến nội dung chính

Bài đăng

Đang hiển thị bài đăng từ Tháng 6, 2014

Hướng dẫn compile module Python trên windows x64 và x86 [Compiling Python 2.7 Modules on Windows 32 and 64 using MSVC++ 2008 Express]

Bài viết được sưu tầm tại địa chỉ tại đây Hello, On this post i will explain how to build, compile, install and distribute python modules on Windows using Microsoft Visual C++ Express Edition. This post will be constantly updated to cover future updates of python, windows and msvc++ versions. For this example i will use the PyCrypto – http://pycrypto.org because this is an example that don’t have packages for windows x64 on the web. Observation: Don’t use Microsoft Visual C++ Express Edition 2010 to build python modules, because this will not work due to Python 2.7 was built using the 2008 version. This is an error that occurs when you try to build PyCrypto and Paramiko using the 2010 version and execute the import module: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 >>> import paramiko Traceback (most recent call last):    File "<stdin>" , line 1 , in <module>    File "C:\Python2