don't let conda install wait for input

This commit is contained in:
Min RK
2023-03-27 15:43:46 +02:00
parent b5a6b3f590
commit 9b940c34fd

View File

@@ -116,12 +116,14 @@ def ensure_conda_packages(prefix, packages):
[
conda_executable,
"install",
"-y",
"-c",
"conda-forge", # Make customizable if we ever need to
"--prefix",
abspath,
]
+ packages,
input="",
)
fix_permissions(prefix)