Installing bitarray in Python 2.6 on Windows - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:45:58Zhttp://stackoverflow.com/feeds/question/780127http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780127/installing-bitarray-in-python-2-6-on-windows0Installing bitarray in Python 2.6 on WindowsJohn Fouhy2009-04-23T02:48:41Z2009-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>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#7806132Answer by theller for Installing bitarray in Python 2.6 on Windowstheller2009-04-23T07:11:03Z2009-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>