So, you are asking for the startproject (which again, you only run once, so I wouldn't think it would be TOO bad) to create a manage.bat that had the following line in it?
python manage.py %* I'm not saying that this is a bad idea. It does make it fairly easy for Windows people. In the case of Linux and Mac, I think the old way "just works" in 90+% of the cases. That stated, could we get the following lines added to virtualenv's activate.bat: assoc .py=Python.File ftype Python.File=(magic path to python.exe or pythonw.exe) >From what I'm reading*, that would solve this problem not just for Django but for everyone. I'll create a patch for virtualenv once I get a chance to test this theory. *( http://stackoverflow.com/questions/8012956/python-django-virtualenv-windows) On Sat, Mar 2, 2013 at 2:57 PM, Alon Nisser <[email protected]> wrote: > much simpler. simply making it run with simple `manage somecommand` > instead of `python manage.py somecommand`. using setuptools or something > similiar > > On Saturday, March 2, 2013 12:17:25 AM UTC+2, Łukasz Rekucki wrote: > >> On 1 March 2013 22:38, Alon Nisser <[email protected]> wrote: >> >>> at least from my windows exprience with Django (yes, I know this isn't a >>> common use case, but still) the current django-admin.py and manage.py do >>> need python preface to run right (while inside a virtualenv) >> >> >> I'm not 100% sure if the Windows Python Launcher[1] works with >> virtualenv, but it most likely works with venv support in Python 3.3. It >> should also allow you to run Python scripts without the .py suffix >> >> Anyways, what kind of "shell" you had in mind? Batch ? Powershell ? Bash >> ?. >> >> [1]: http://blog.python.org/**2011/07/python-launcher-for-** >> windows_11.html<http://blog.python.org/2011/07/python-launcher-for-windows_11.html> >> > -- > You received this message because you are subscribed to the Google Groups > "Django developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-developers?hl=en > . > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Joe Tennies [email protected] -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-developers?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
