From 62e5d12373d4e69a666f3473914e5ce23a11ba3b Mon Sep 17 00:00:00 2001 From: Bruce Eckel Date: Thu, 2 Jun 2016 13:05:35 -0700 Subject: [PATCH] Generify commands so they work on all platforms (Including Windows) --- docs/install.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 933f93ffb3c..73158d18e8d 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -73,15 +73,15 @@ Next, install the dependencies using ``pip`` (included inside of virtualenv_):: This may take a while, so go grab a beverage. When it's done, build your database:: - ./manage.py migrate + python manage.py migrate Then please create a superuser account for Django:: - ./manage.py createsuperuser + python manage.py createsuperuser Now let's properly generate the static assets:: - ./manage.py collectstatic + python manage.py collectstatic By now, it is the right time to load in a couple users and a test project::