Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #19482

running in a virtualenv

Date 2012-01-26 11:16 +0000
From Andrea Crotti <andrea.crotti.0@gmail.com>
Subject running in a virtualenv
Newsgroups comp.lang.python
Message-ID <mailman.5118.1327576596.27778.python-list@python.org> (permalink)

Show all headers | View raw


I have a python script which has to run some other code and to separate 
the different projects I'm
using virtualenv.
What my this script does is:
- check if the virtualenv exists already, otherwise create it with
         virtualenv.create_environment(venv_path, site_packages=True,
                                       unzip_setuptools=False,
                                       never_download=True)

- generate the right command to call and use
   check_call(['virtualenv_interpreter', 'command', 'to', 'run']) to 
execute the
   whole thing inside the virtual environment.

It works fine, but for example debugging doesn't work very after the
check_call is called.

Is there a better way or maybe is it possible to change the 
sys.executable at run-time?
Or in general how do I debug/profile python subprocesses?

Thanks,
Andrea

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

running in a virtualenv Andrea Crotti <andrea.crotti.0@gmail.com> - 2012-01-26 11:16 +0000

csiph-web