Installing bitarray in Python 2.6 on Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:45:58Z http://stackoverflow.com/feeds/question/780127 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/780127/installing-bitarray-in-python-2-6-on-windows 0 Installing bitarray in Python 2.6 on Windows John Fouhy 2009-04-23T02:48:41Z 2009-04-23T07:11:03Z <p>I would like to install <a href="http://pypi.python.org/pypi/bitarray/" rel="nofollow">bitarray</a> in Windows running python 2.6.</p> <p>I have mingw32 installed, and I have <code>C:\Python26\Lib\distutils\distutils.cfg</code> set to:</p> <pre><code>[build] compiler = mingw32 </code></pre> <p>If I type, in a <code>cmd.exe</code> window:</p> <pre><code>C:\Documents and Settings\john\My Documents\bitarray-0.3.5&gt;python setup.py install </code></pre> <p>I get:</p> <pre><code>[normal python messages skipped] C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -IC:\Python26\include -IC:\Python26\PC -c bitarray/_bitarray.c -o build\temp.win32-2.6\Release\bitarray\_bitarray.o bitarray/_bitarray.c:2197: error: initializer element is not constant bitarray/_bitarray.c:2197: error: (near initialization for `BitarrayIter_Type.tp_getattro') bitarray/_bitarray.c:2206: error: initializer element is not constant bitarray/_bitarray.c:2206: error: (near initialization for `BitarrayIter_Type.tp_iter') bitarray/_bitarray.c:2232: error: initializer element is not constant bitarray/_bitarray.c:2232: error: (near initialization for `Bitarraytype.tp_getattro') bitarray/_bitarray.c:2253: error: initializer element is not constant bitarray/_bitarray.c:2253: error: (near initialization for `Bitarraytype.tp_alloc') bitarray/_bitarray.c:2255: error: initializer element is not constant bitarray/_bitarray.c:2255: error: (near initialization for `Bitarraytype.tp_free') error: command 'gcc' failed with exit status 1 </code></pre> <p>Can anyone help?</p> http://stackoverflow.com/questions/780127/installing-bitarray-in-python-2-6-on-windows/780613#780613 2 Answer by theller for Installing bitarray in Python 2.6 on Windows theller 2009-04-23T07:11:03Z 2009-04-23T07:11:03Z <p>MingW cannot compile the bitarray sources, I tried with version 3.4.5 and get the same errors. However, it compiles fine with the Microsoft compiler.</p> <p>For your convenience I've build msi and exe installers for Python 2.6:</p> <p><a href="http://starship.python.net/crew/theller/bitarray-0.3.5.win32-py2.6.msi" rel="nofollow">http://starship.python.net/crew/theller/bitarray-0.3.5.win32-py2.6.msi</a></p> <p><a href="http://starship.python.net/crew/theller/bitarray-0.3.5.win32-py2.6.exe" rel="nofollow">http://starship.python.net/crew/theller/bitarray-0.3.5.win32-py2.6.exe</a></p> <p>Please point the bitarray author to them so that he can upload them to pypi.</p>