From 1ddddef23b38c3028544768805c2a55ecebcef29 Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 15 Jun 2017 22:21:21 +0200 Subject: [PATCH] Add better instructions for upgrading django. --- evennia/server/evennia_launcher.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/evennia/server/evennia_launcher.py b/evennia/server/evennia_launcher.py index 9f99886769..28f6c60bde 100644 --- a/evennia/server/evennia_launcher.py +++ b/evennia/server/evennia_launcher.py @@ -344,10 +344,13 @@ ERROR_DJANGO_MIN = \ ERROR: Django {dversion} found. Evennia requires version {django_min} or higher. - Install it with for example `pip install --upgrade django` + If you are using a virtualenv, use the command `pip install --upgrade -e evennia` where + `evennia` is the folder to where you cloned the Evennia library. If not + in a virtualenv you can install django with for example `pip install --upgrade django` or with `pip install django=={django_min}` to get a specific version. - It's also a good idea to run `evennia migrate` after this upgrade. + It's also a good idea to run `evennia migrate` after this upgrade. Ignore + any warnings and don't run `makemigrate` even if told to. """ NOTE_DJANGO_MIN = \