Does H2OAutoML run in venv?
sedol1339 opened this issue · 2 comments
sedol1339 commented
Hello! frameworks/H2OAutoML/
folder contains setup.sh
that seems to install packages in a separate venv. However, exec.py
does not use the run_in_venv
method. So, the venv is created but not used?
PGijsbers commented
exec.py
defines a run function which may or may not be called from a separate process with its own virtual environment. Whether not it is executed in a virtual environment depends on the run
function of __init__.py
. As you can see here, the run
function from exec.py
will be executed from run_in_venv
.
sedol1339 commented
Understood, thank you!