From 9ccc49a1f97a0a307cb23571c89a35f2cda3f68c Mon Sep 17 00:00:00 2001 From: Uwe Schmitt <uwe.schmitt@id.ethz.ch> Date: Thu, 22 Aug 2019 11:54:02 +0200 Subject: [PATCH] use local conda environment.yml file now --- setup_eth_euler/README.md | 2 +- setup_eth_euler/update_conda_env_on_euler.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup_eth_euler/README.md b/setup_eth_euler/README.md index 68a6a88..4f34660 100644 --- a/setup_eth_euler/README.md +++ b/setup_eth_euler/README.md @@ -7,7 +7,7 @@ - `update_conda_env_on_euler.sh` sets up conda and packages for the workshop in `/cluster/scratch/schmittu/mlw`, repeated calls will run updates, e.g. when - `../mlw_packages.yml` is modified + `environment.yml` is modified - `setup_course_accounts_on_euler.sh` copies current notebooks and scripts from `to_deploy_on_euler/` to euler for every user from `credentials.txt`. diff --git a/setup_eth_euler/update_conda_env_on_euler.sh b/setup_eth_euler/update_conda_env_on_euler.sh index aca2a2c..3893c8d 100755 --- a/setup_eth_euler/update_conda_env_on_euler.sh +++ b/setup_eth_euler/update_conda_env_on_euler.sh @@ -3,7 +3,7 @@ set -x ROOT="/cluster/scratch/schmittu/mlw" -scp ../mlw_packages.yml euler:${ROOT} +scp environment.yml euler:${ROOT} MINICONDA_INSTALLER=Miniconda3-latest-Linux-x86_64.sh ssh euler bash <<EOL @@ -13,9 +13,9 @@ test -f $MINICONDA_INSTALLER || wget https://repo.anaconda.com/miniconda/$MINICO test -f miniconda3 || bash Miniconda3-latest-Linux-x86_64.sh -b -p ./miniconda3 if test -d conda_env; then - miniconda3/bin/conda env update -p conda_env -f mlw_packages.yml; + miniconda3/bin/conda env update -p conda_env -f environment.yml; else - miniconda3/bin/conda env create -p conda_env -f mlw_packages.yml; + miniconda3/bin/conda env create -p conda_env -f environment.yml; fi EOL -- GitLab