From fd7bba0794e460e99afe0bab9cac025c26a9e034 Mon Sep 17 00:00:00 2001 From: Fred Reiss Date: Tue, 20 Jul 2021 16:49:20 -0700 Subject: [PATCH] Add pip to initial environment contents (#230) --- env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.sh b/env.sh index 93866a65..af1746c9 100755 --- a/env.sh +++ b/env.sh @@ -111,7 +111,7 @@ if [ -n "${ENV_NAME}" ]; then # Remove the detrius of any previous runs of this script conda env remove -n ${ENV_NAME} - conda create -y --name ${ENV_NAME} python=${PYTHON_VERSION} + conda create -y --name ${ENV_NAME} python=${PYTHON_VERSION} pip ################################################################################ # All the installation steps that follow must be done from within the new