How to integrate Django and Cygwin? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T12:56:46Z http://stackoverflow.com/feeds/question/533125 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin 5 How to integrate Django and Cygwin? stach 2009-02-10T16:42:14Z 2009-04-26T22:11:14Z <p>I have a Windows box with cygwin, python and django installed.</p> <p>Now I want to run django-admin, but when I do I get the error:</p> <pre><code>$ django-admin.py c:\Python26\python.exe: can't open file '/usr/bin/django-admin.py': [Errno 2] No such file or directory </code></pre> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/533184#533184 3 Answer by David Santamaria for How to integrate Django and Cygwin? David Santamaria 2009-02-10T16:53:05Z 2009-02-10T16:53:05Z <p>Hi From <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/?from=olddocs" rel="nofollow">here</a></p> <blockquote> <p>For Windows users, who do not have symlinking functionality available, you can copy django-admin.py to a location on your existing path or edit the PATH settings (under Settings - Control Panel - System - Advanced - Environment...) to point to its installed location.</p> </blockquote> <p>hope this helps</p> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/543381#543381 0 Answer by Brian Neal for How to integrate Django and Cygwin? Brian Neal 2009-02-12T21:28:46Z 2009-02-12T21:28:46Z <p>Sort of sounds like the windows version of Python is trying to run instead of the cygwin one. What happens if you type this:</p> <pre><code>$ python django-admin.py </code></pre> <p>Here I'm assuming </p> <pre><code>$ which python </code></pre> <p>Finds the cygwin version of python (which will be something like /usr/bin/python).</p> <p>You may also try (temporarily) uninstalling the windows version of python and use only cygwin.</p> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/543512#543512 0 Answer by fuentesjr for How to integrate Django and Cygwin? fuentesjr 2009-02-12T21:50:41Z 2009-02-12T21:50:41Z <p>Help us help you. Is there a reason why you are running the windows python interpreter (c:\Python26\python.exe) as oppose to the cygwin python interpreter (/usr/bin/python.exe)? That could be your problem. So to troubleshoot that, you might consider removing the windows native interpreter or simply making sure the cygwin path is listed before the c:\Python26 path in the windows global PATH variable.</p> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/550413#550413 0 Answer by Harold for How to integrate Django and Cygwin? Harold 2009-02-15T06:22:40Z 2009-02-15T06:22:40Z <p>Add the location of your django/bin folder (or wherever else you keep django-admin.py) to your PYTHONPATH environment variable.</p> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/558172#558172 0 Answer by gerdemb for How to integrate Django and Cygwin? gerdemb 2009-02-17T18:34:32Z 2009-02-17T18:34:32Z <p>Like Brian mentioned you are running the Windows version of Python which won't work with the Cygwin installation.</p> <p>A word of warning. When I first started using Django, I tried installing it in Cygwin and had a variety of problems and ended up switching to the regular Windows version of Python. Unfortunately, I didn't document all my issues, but I remember some of them had to do with the database libraries. Anyway, that was a few months ago when I knew less about Django than I do now. Maybe the problems I ran into have been solved and perhaps now that I know more I could get it to work, but running Django on Cygwin does seem to be the road less traveled. Good luck. :)</p> http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwin/791703#791703 1 Answer by Jon Cage for How to integrate Django and Cygwin? Jon Cage 2009-04-26T22:11:14Z 2009-04-26T22:11:14Z <p>I just ran into the exact same problem. I've found that if you already have the windows version of python installed, it seems to get priority over the cygwin version. I solved the problem by editing /etc/profile and changed:</p> <pre><code>PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:$PATH </code></pre> <p>...to:</p> <pre><code>PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin: </code></pre> <p>...which I <i>think</i> stops cygwin from adding the normal windows path. Once you've got that working, download django into some directory, move into that directory and type:</p> <pre><code>python setup.py install </code></pre> <p>I was having problems to begin with because I had omitted the 'python' bit at the start</p>