but in an unrelated question: is there any way for...
# announcements
a
but in an unrelated question: is there any way for dagster pipelines to execute in a separate python virtual environment?
m
hmm, you can run pipelines in any virtualenv you'd like
if you mean, is there an easy way to run them so each pipeline run is in its own isolated virtualenv, there isn't, but there is some machinery that you could hook into in order to support that
a
is this configured in environment_dict?
m
no, by default pipelines will run in whatever python environment you start dagit in or call the execute_pipeline API from
a
hmm, I think I get it now, thanks