From c9a22ba65797980550ff1b4cc217e8c4f5eadd3e Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 2 Feb 2015 22:23:40 +0100 Subject: [PATCH] Added a special path setup for the full install rather than the -e install on windows. --- bin/windows/evennia.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/windows/evennia.py b/bin/windows/evennia.py index 931ef3a14b..1784b05fe4 100755 --- a/bin/windows/evennia.py +++ b/bin/windows/evennia.py @@ -7,7 +7,10 @@ the command %path%. import os, sys +# for pip install -e sys.path.insert(0, os.path.abspath(os.getcwd())) +# main library path +sys.path.insert(0, os.path.join(sys.prefix, "Lib", "site-packages")) from evennia.server.evennia_launcher import main main()