diff --git a/docker-compose/itango/lofar-requirements.txt b/docker-compose/itango/lofar-requirements.txt
index 9986b60668441b88f39bfa5788c9c804aaf08387..d46a68f995c40af8701393bca99738fbf1c1a098 100644
--- a/docker-compose/itango/lofar-requirements.txt
+++ b/docker-compose/itango/lofar-requirements.txt
@@ -4,3 +4,4 @@ opcua >= 0.98.13
 astropy 
 python-logstash-async
 gitpython
+mysql-connector-python
\ No newline at end of file
diff --git a/docker-compose/jupyter/Dockerfile b/docker-compose/jupyter/Dockerfile
index 7f043d4493e71fff9659dc5ee26cd0b716cef247..2ba7c46c68a21e4862ac67ef693a328c93fe540f 100644
--- a/docker-compose/jupyter/Dockerfile
+++ b/docker-compose/jupyter/Dockerfile
@@ -23,6 +23,9 @@ COPY jupyter-kernels /usr/local/share/jupyter/kernels/
 RUN sudo pip3 install python-logstash-async
 COPY jupyter-notebook /usr/local/bin/jupyter-notebook
 
+#Install further python modules
+RUN sudo pip3 install mysql-connector-python
+
 # Add Tini. Tini operates as a process subreaper for jupyter. This prevents kernel crashes.
 ENV TINI_VERSION v0.6.0
 ENV JUPYTER_RUNTIME_DIR=/tmp