diff --git a/install_at_MID.sh b/install_at_MID.sh
new file mode 100644
index 0000000000000000000000000000000000000000..89ab85d6502e607e41ad4b2f23babea4ba26f837
--- /dev/null
+++ b/install_at_MID.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+this_host_name=$(hostname)
+
+echo $this_host_name
+echo this_host_name
+
+if [ "$this_host_name" == "exflong201.desy.de" ]; then
+  echo "activating karabo:"
+  source /scratch/xonc/mid/karabo/activate
+  echo "do karabo check:"
+  karabo-check
+  echo "installing:"
+  cd
+  cd git/onlinemid
+  git checkout .
+  git pull
+  git checkout main
+  cd python_package
+  pip install .
+  cd ../karabo_devices/shared_mem_processor
+  pip install .
+  cd 
+  
+fi
+