Forums

myapp not found

i have a django app when i enter the command 'startapp myapp' i am getting 'command not found' where am i getting it wrong? when i 'ls' the project there is no myapp folder

Command not found means it can't find startapp. I'm pretty sure you need to run "manage.py startapp myapp" to start a Django app.

ok that worked thanks