Running numpy from cygwin - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T13:22:20Zhttp://stackoverflow.com/feeds/question/318390http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318390/running-numpy-from-cygwin2Running numpy from cygwin Hortitude2008-11-25T18:23:15Z2009-04-28T14:08:41Z
<p>I am running a windows machine have installed Python 2.5. I also used the windows installer to install NumPy. </p>
<p>This all works great when I run the Python (command line) tool that comes with Python.</p>
<p>However, if I run cygwin and then run Python from within, it cannot find the numpy package.</p>
<p>What environment variable do I need to set? What value should it be set to? </p>
http://stackoverflow.com/questions/318390/running-numpy-from-cygwin/318419#3184193Answer by Eli Courtwright for Running numpy from cygwin Eli Courtwright2008-11-25T18:32:43Z2008-11-25T18:32:43Z<p>Cygwin comes with its own version of Python, so it's likely that you have two Python installs on your system; one that installed under Windows and one which came with Cygwin.</p>
<p>To test this, try opening a bash prompt in Cygwin and typing <code>which python</code> to see where the Python executable is located. If it says <code>/cygdrive/c/Python25/python.exe</code> or something similar then you'll know you're running the Windows executable. If you see <code>/usr/local/bin/python</code> or something like that, then you'll know that you're running the Cygwin version.</p>
<p>I recommend opening a DOS prompt and running Python from there when you need interactive usage. This will keep your two Python installs nicely separate (it can be very useful to have both; I do this on my own machine). Also, you may have some problems running a program designed for Windows interactive console use from within a Cygwin shell.</p>
http://stackoverflow.com/questions/318390/running-numpy-from-cygwin/318422#3184221Answer by withoutane.com for Running numpy from cygwin withoutane.com2008-11-25T18:33:31Z2008-11-25T18:33:31Z<p>You're running a separate copy of python provided by cygwin.</p>
<p>You can run /cygdrive/c/python25/python (or wherever you installed it)
to get your win32 one, or just install another copy of numpy.</p>
http://stackoverflow.com/questions/318390/running-numpy-from-cygwin/318423#3184230Answer by bhadra for Running numpy from cygwin bhadra2008-11-25T18:33:33Z2008-11-25T18:33:33Z<p>Ensure that PYTHONPATH has NumPy. Refer <a href="http://www.python.org/doc/2.5.2/tut/node8.html" rel="nofollow">The Module Search Path (section 6.1.2)</a> and <a href="http://www.python.org/doc/2.5.2/inst/search-path.html" rel="nofollow">Modifying Python's Search Path (section 4.1)</a>.</p>
http://stackoverflow.com/questions/318390/running-numpy-from-cygwin/798145#7981450Answer by David Cournapeau for Running numpy from cygwin David Cournapeau2009-04-28T14:08:41Z2009-04-28T14:08:41Z<p>numpy built for windows is not compatible with cygwin python. You have to build it by yourself on cygwin.</p>