>>> import django
>>> print (django.__path__)
['/opt/rh/python33/root/usr/lib/python3.3/site-packages/Django-1.7-py3.3.egg/django']
>>> import sql_server.pyodbc
>>> print (sql_server.pyodbc.__path__)
['/opt/rh/python33/root/usr/lib/python3.3/site-packages/django_pyodbc_azure-1.2.0-py3.3.egg/sql_server/pyodbc']
>>> import sqlalchemy
>>> print (sqlalchemy.__path__)
['/opt/rh/python33/root/usr/lib64/python3.3/site-packages/SQLAlchemy-0.9.7-py3.3-linux-x86_64.egg/sqlalchemy']
>>>
WSGIPythonPath /path/to/mysite.com:/path/to/your/venv/lib/python3.X/site-packagesCan I specify 2 paths to represent the 2 locations of site packages.
You want to establish the path directories in your .wsgi file. Use `addsitedir` to set the path to site-packages and set additional paths with path.append, e.g.:
import os, sys, site
site.addsitedir('/path/to/site-packages')
sys.path.append('/extra/path/1')
sys.path.append('/extra/path/2')