From 9b940c34fde0f8cf90f4455e2b7018bc33356893 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 27 Mar 2023 15:43:46 +0200 Subject: [PATCH] don't let conda install wait for input --- tljh/conda.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tljh/conda.py b/tljh/conda.py index 4a08fce..206e4df 100644 --- a/tljh/conda.py +++ b/tljh/conda.py @@ -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)