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/create_printout.sh b/setup_eth_euler/create_printout.sh
index f93ba55d1b4d831d5ca8c93e2be410886faaf119..789378e22ae0cf5d2545259dc648e5e39e40c7a4 100755
--- a/setup_eth_euler/create_printout.sh
+++ b/setup_eth_euler/create_printout.sh
@@ -22,7 +22,7 @@ function create_md {
         echo
         echo "4. To download startup script enter"
         echo
-        echo '   ```bash'
+        echo '   ```'
         echo "   wget https://sis.id.ethz.ch/installer_wlw.zip"
         echo '```'
 
@@ -30,7 +30,7 @@ function create_md {
         echo 
         echo "5. To extract the downloaded archive enter"
         echo
-        echo '   ```bash'
+        echo '   ```'
         echo "   unzip installer_wlw.zip"
         echo '```'
 
@@ -40,7 +40,7 @@ function create_md {
         echo
         echo "To startup jupyter notebook on Euler enter"
         echo
-        echo '```bash'
+        echo '```'
         echo "bash start_jupyter_nb.sh"
         echo '```'
         echo "   and press RETURN."
@@ -49,7 +49,7 @@ function create_md {
         echo
         echo "To upload notebooks to your polybox:"
         echo
-        echo '```bash'
+        echo '```'
         echo "bash upload_to_polybox.sh"
         echo '```'
         echo "and press RETURN."
diff --git a/setup_eth_euler/pandoc.css b/setup_eth_euler/pandoc.css
index f642850d483881a2e7724ce2027282e6d451e70c..4df14201403cd8aedd0f278f271e84d709204b77 100644
--- a/setup_eth_euler/pandoc.css
+++ b/setup_eth_euler/pandoc.css
@@ -12,9 +12,10 @@ body {
 }
 
 code {
-    font-size: 135%;
+    font-size: 130%;
     margin-top: 10px;
     margin-bottom: 10px;
+    color: #770000;
 
 }
 
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