I want to execute a python script executed.py
from another python script trigger.py
using the subprocess package. The executed.py
must be ran in a different conda environment than trigger.py
(let say executed_env
and trigger_env
). What is the best way to do that ? My current code of trigger.py
is:
command = "python executed.py --option1 -dir /path/to/dir"
args = shlex.split(command)
my_subprocess = subprocess.Popen(args)
It returns an error since executed.py
is ran in the trigger_env
environment.
If you just need to use the other python then I believe you simply need to use the full path to the other python in your
command
.Try going into your
executed_env
(i.e.source activate executed_env
if Linux) and dowhich python
. Let's assume that returnsHOME/.conda/envs/executed_env/bin/python
now that becomes the python that you use in your command -- i.e.command = "HOME/.conda/envs/executed_env/bin/python executed.py --option1 -dir /path/to/dir"
. ThisFor example, let's run
executed.py
in a different python version.conda create -n py27 python=2.7
this is thetrigger_env
.conda create -n py35 python=3.5
this is theexecuted_env
.source activate py35
and thenwhich python
(let's call that EXECUTED_PYTHON for this description). Deactivate viasource deactivate
.Then we create
executed.py
Then the
trigger.py
(included the arguments but they are doing nothing)Now let's run it in the
trigger_env
--source activate py27
andpython trigger.py
.3.5.2 |Continuum Analytics, Inc. [...]
(3.5 being the important part). You can see it is using the other python in theexecuted_env
.I did some research on any conda built-in methods and found the following. The first is a workaround, and the second the final solution built-in solution (not available at time of writing this post).
conda-wrappers. Guilherme Melo created a wrappers for the python executables within a conda environment. If you set it as the python interpreter in your IDE, e.g. PyCharm, it will activate the conda environment from which it is called, and then call the python interpreter. Look here under section "Creating conda wrappers": https://pypi.org/project/exec-wrappers/
conda run. A long discussion on the conda github page on a standard and fast way to execute a command inside an environment led to the implementation of a new command (actually a re-invocation as it was available before):
conda run
It is described in issue #7320 and will be released in conda-4.6 hopefully in October 2018!