Skip to content

Uninstall

Python API (all platforms)

Project data might be deleted

If you have not installed the Engine separately and have not set the home directory to a custom location on the Engine launch, project data will be deleted when you uninstall the Python API.

To uninstall the Python API, execute the following command in a terminal:

pip uninstall getml

Linux

Project data might be deleted

If you have not set the home directory to a custom location on the Engine launch, project data will be deleted when you remove the .getML directory.

You will have to remove the folder .getML from your home directory. In a terminal, execute:

rm -r $HOME/.getML

Docker

To remove the resources defined in the docker-compose.yml file, you can follow these steps:

Docker Image

Remove the Docker image getml/getml from your local Docker repository as follows:

docker rmi getml/getml

Note that if there are any containers using this image, you must remove those containers first.

Named Volumes

Remove the getml volume as follows:

docker volume rm getml

Ensure that the volume is not in use by any other containers.