Мне пришлось использовать следующую модификацию подхода AndiDog:
setup.py build -cmingw32
setup.py install --skip-build
Без опции --skip-build программа установки попытается собрать заново и снова будет выдавать жалобу на MSVC:
error: Python was built with Visual Studio 2003;
extensions must be built with a compiler than can generate compatible binaries.
Visual Studio 2003 was not found on this system. If you have Cygwin installed,
you can try compiling with MingW32, by passing "-c mingw32" to setup.py.
Кроме того, изначально при использовании команды сборки у меня было много ошибок, подобных этой:
build\temp.win32-2.5\Release\ssl\_ssl2.o:_ssl2.c:(.text+0x1d): undefined reference to `_imp__PyImport_ImportModule'
build\temp.win32-2.5\Release\ssl\_ssl2.o:_ssl2.c:(.text+0x34): undefined reference to `_imp__PyObject_GetAttrString'
build\temp.win32-2.5\Release\ssl\_ssl2.o:_ssl2.c:(.text+0x53): undefined reference to `_imp__PyCObject_AsVoidPtr'
Это потому, что я изначально установил 64-битную версию Python 2.5.4 (python-2.5.4.amd64.msi). Я удалил это и установил 32-битную версию (python-2.5.4.msi). Это включает файл libpython25.a, который искала команда сборки.