From 4fe608db1813284eb496954835b1a553f40589f8 Mon Sep 17 00:00:00 2001 From: Douglas Cerna Date: Fri, 19 Aug 2016 00:52:33 -0600 Subject: [PATCH] Error finding manage.py When these commands are executed the way they're explained you get an error this error when you try to sync the database the first time: (env) replaceafill@laptop:~/tutorial$ python manage.py migrate python: can't open file 'manage.py': [Errno 2] No such file or directory The reason is that after the quickstart app is created you have to stay in the tutorial project directory for this (and the rest of the commands below) to work. --- docs/tutorial/quickstart.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 96fed2767..abdbb6e5c 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -22,7 +22,6 @@ Create a new Django project named `tutorial`, then start a new app called `quick django-admin.py startproject tutorial . # Note the trailing '.' character cd tutorial django-admin.py startapp quickstart - cd .. Now sync your database for the first time: