I need to start venv / pyvenv from within a python script and I know the official documentation is to run:
activate_this = '/path/to/env/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
But I don't have an activate_this.py file and I can't find anywhere how to create one.
I am running python 3.4.1. Any idea what I need to do?
As you've noted,
pyvenv
/thevenv
module doesn't ship withactivate_this.py
. But if you need this feature, you can borrowactivate_this.py
fromvirtualenv
, put it in the expected location (virtualenv_path/bin/activate_this.py
), then use it. It seems to work fine. Only issue is that thevirtualenv
docs are out of date for Python 3 (they claim you useexecfile
, which doesn't exist). The Python 3 compatible alternative would be:Nothing
activate_this.py
does is magical, so you could manually perform the same changes without looting fromvirtualenv
(adjustingPATH
,sys.path
,sys.prefix
, etc.), but borrowing makes it much simpler in this case.