0👍
There is no space between startapp
.
Also you need to make manage.py
executable to execute it. Do chmod +x manage.py
to make it executable. Alternatively you can do python manage.py <cmd>
instead.
- [Answer]-Get posts in django by specific users [Mongonengine]
- [Answer]-Cloning Django models or add a differentiating field in the second model?
- [Answer]-Google Analytics event tracking on a button
0👍
Make sure that the first line in manage.py is #!/usr/bin/env python
so that the shell will now that it needs to execute this file using Python. Read more… Shebang (Unix)
- [Answer]-Where should I start my Django site inside of my virtual env?
- [Answer]-Django CBV ordering in list view not working
- [Answer]-Setup and connect to database for Django on AWS
- [Answer]-Search criteria language parser in Python?
Source:stackexchange.com