Made the virtualenv optional

This commit is contained in:
Maikel de Boer 2017-10-30 20:21:06 +01:00
parent a61151de2e
commit 19080d4a07
2 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,8 @@
import sys
activate_this = '/path/to/bird-lg/venv/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
#Uncomment these two lines if you want to make use of virtualenv
#activate_this = '/path/to/bird-lg/venv/bin/activate_this.py'
#execfile(activate_this, dict(__file__=activate_this))
sys.path.insert(0, '/path/to/bird-lg')

View File

@ -1,7 +1,8 @@
import sys
activate_this = '/path/to/bird-lg/venv/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
#Uncomment these two lines if you want to make use of virtualenv
#activate_this = '/path/to/bird-lg/venv/bin/activate_this.py'
#execfile(activate_this, dict(__file__=activate_this))
sys.path.insert(0, '/path/to/bird-lg')