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, conda_executable,
"install", "install",
"-y",
"-c", "-c",
"conda-forge", # Make customizable if we ever need to "conda-forge", # Make customizable if we ever need to
"--prefix", "--prefix",
abspath, abspath,
] ]
+ packages, + packages,
input="",
) )
fix_permissions(prefix) fix_permissions(prefix)