diff --git a/setup_eth_euler/README.md b/setup_eth_euler/README.md
index 68a6a882102b5df0aaf36e4286927d59faf6599c..4f346602b808a48e44d10bec21768542b2892d2e 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 aca2a2cc7c0216da55485e99e6b8e543e6535d93..3893c8d40f4c57a4d83040c587dd96cde392d7e1 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