Opened 13 years ago
Closed 13 years ago
#16616 closed Bug (worksforme)
startproject should use virtualenv compatible /usr/bin/env python hashbang for manage.py
Reported by: | Odin Hørthe Omdal | Owned by: | nobody |
---|---|---|---|
Component: | Core (Management commands) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
Always after doing django-admin.py startproject test I need to change #!/usr/bin/python
to #!/usr/bin/env python
in order for it to work without problem with virtualenv.
Using #!/usr/bin/env python
as a hashbang is a very common idiom in python, and I believe there shouldn't be any problems using that.
Note:
See TracTickets
for help on using tickets.
I found only one instance of
#!/usr/bin/python
in the current source tree, and it's an example in the fastcgi docs:All the other files use
#!/usr/bin/env python
, in particularproject_template/manage.py
does:Either you're using an old version of Django where this problem existed, or your packaging / distribution tools change the hashbang.