Please note that this will not work on Google Colab
environment as it does not support python v3.8.
You will need a Docker installation on your machine. This tutorial was tested against v19.03.13 but it really should work with any modern version.
- Clone the repository into any directory of your choice.
- In the root directory of the project execute command
docker build -t agh/data-assimilation .
. (Note the dot at the end.) This will create a docker image with all required dependencies. This might take a while. - Create a docker container using the following command:
docker-compose up
.
- To remove the docker container from your local machine execute
docker-compose down -v
. - To remove the docker image execute
docker rmi agh/data-assimilation
.