Running numpy from cygwin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T13:22:20Z http://stackoverflow.com/feeds/question/318390 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318390/running-numpy-from-cygwin 2 Running numpy from cygwin Hortitude 2008-11-25T18:23:15Z 2009-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#318419 3 Answer by Eli Courtwright for Running numpy from cygwin Eli Courtwright 2008-11-25T18:32:43Z 2008-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#318422 1 Answer by withoutane.com for Running numpy from cygwin withoutane.com 2008-11-25T18:33:31Z 2008-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#318423 0 Answer by bhadra for Running numpy from cygwin bhadra 2008-11-25T18:33:33Z 2008-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#798145 0 Answer by David Cournapeau for Running numpy from cygwin David Cournapeau 2009-04-28T14:08:41Z 2009-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>