Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to determine if the current script is running inside a virtualenv environment?

share|improve this question
1  
Interesting question. I installed virtualenv about an hour ago so ... BBRS (Be Back Real Soon). – Peter Rowell Dec 9 '09 at 4:30

3 Answers

up vote 30 down vote accepted

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:

import sys

if hasattr(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.

share|improve this answer

When running in a virtualenv, this code shouldn't throw KeyError and give you the environment path:

>>> import os
>>> os.environ['VIRTUAL_ENV']
'/Users/you/ve/py26'

And this is how you tell you're under virtualenv (provided it was activated with bin/activate, see the comment below).

share|improve this answer
7  
This only works if the virtualenv is activated via the bin/activate script. If you use one of the other commands in the bin directory instead, it doesn't set the environment variable. – Nicholas Riley Dec 9 '09 at 5:14
Yes, not what I was looking for, but good to know nevertheless. – miracle2k Dec 11 '09 at 7:45
You could avoid having to catch exceptions by doing if 'VIRTUAL_ENV' in os.environ: – Hamish Downer May 15 '12 at 8:12
@Hamish: it's not the same. You got a race condition that way. – e-satis Feb 21 at 17:34

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.