Hi Jon,
So I managed to install the new repo (with the help of a friend who has much more experience in coding than me 😅).
After downloading the repo I followed the installation instructions, but added a few lines to the Dockerfile in the downloaded repo folder before building the docker image:
# Install TensorFlow:
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools
RUN pip install tensorflow==2.0.0
... and after the very last line:
RUN pip install markupsafe==2.0.1
With this the installation worked just fine. Unfortunately I still get the same error message when running the Shallow net in Tensorflow ("The TensorFlow library was compiled to use AVX instructions, but these aren't available on your machine."), but the Shallow net in Pytorch seems to work just fine. That´s already some progress! Next I´ll try to make the tensorflow notebooks work on my machine as well (maybe you have an idea what the problem might be?).
All the best
Pablo