[Answer]-Enabling same virtualenv settings in multiple ssh sessions

1👍

You shouldn’t run virtualenv djangorocks --distribute every time you connect with ssh, since it creates a new virtualenv. You need to navigate to the previously created one and activate it:

cd /path/to/existing/virtualenv
source bin/activate
python manage.py runserver

Leave a comment