Skip to content

Instantly share code, notes, and snippets.

@jhalcrow
Created October 10, 2011 16:55
Show Gist options
  • Save jhalcrow/1275789 to your computer and use it in GitHub Desktop.
Save jhalcrow/1275789 to your computer and use it in GitHub Desktop.
virtualenv & ipython
def virtualenv():
import site
from os import environ
from os.path import join
from sys import version_info
if 'VIRTUAL_ENV' in environ:
virtual_env = join(environ.get('VIRTUAL_ENV'),
'lib',
'python%d.%d' % version_info[:2],
'site-packages')
site.addsitedir(virtual_env)
print 'VIRTUAL_ENV ->', virtual_env
virtualenv()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment