Skip to content
Snippets Groups Projects
Commit 2ad2e499 authored by Mikolaj Rybinski's avatar Mikolaj Rybinski
Browse files

Merge branch 'improvements_uwe' of...

Merge branch 'improvements_uwe' of https://sissource.ethz.ch/sis/courses/machinelearning-introduction-workshop into improvements_uwe
parents 2cc7260d 6f1c24dd
No related branches found
No related tags found
No related merge requests found
......@@ -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`.
......
......@@ -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."
......
......@@ -12,9 +12,10 @@ body {
}
code {
font-size: 135%;
font-size: 130%;
margin-top: 10px;
margin-bottom: 10px;
color: #770000;
}
......
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment