Is it possible to determine if the current script is running inside a virtualenv environment?
|
|
AFAIK the most reliable way to check for this (and the way that is used internally in virtualenv and in pip) is to check for the existence of sys.real_prefix:
Inside a virtualenv, sys.prefix points to the virtualenv directory, and sys.real_prefix points to the "real" prefix of the system Python (often /usr or /usr/local or some such). Outside a virtualenv, sys.real_prefix should not exist. |
|||
|
|
|
When running in a virtualenv, this code shouldn't throw
And this is how you tell you're under virtualenv (provided it was activated with |
|||||||||||
|
|
According to the virtualenv pep at http://www.python.org/dev/peps/pep-0405/#specification you can just use sys.prefix instead os.environ['VIRTUAL_ENV']. the sys.real_prefix does not exist in my virtualenv and same with sys.base_prefix. |
|||
|
|