Orbits
1
|
Variables | |
list | old_os_path = os.environ['PATH'] |
tuple | base = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
tuple | site_packages = os.path.join(base, 'Lib', 'site-packages') |
tuple | prev_sys_path = list(sys.path) |
list | new_sys_path = [] |
By using execfile(this_file, dict(__file__=this_file)) you will activate this virtualenv environment. This can be used when you must use an existing Python interpreter, not the virtualenv bin/python
tuple activate_this.base = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
list activate_this.new_sys_path = [] |
list activate_this.old_os_path = os.environ['PATH'] |
tuple activate_this.prev_sys_path = list(sys.path) |
tuple activate_this.site_packages = os.path.join(base, 'Lib', 'site-packages') |
Copyright 2014 Google Inc. All rights reserved.