To streamline the installation process and avoid potential software conflicts, CFEIntact is distributed as a Docker container. Docker packages all required components inside a container, ensuring consistency across different systems.
Install Docker
-
Windows / macOS:
- Visit the Docker Desktop download page and download the installer for your operating system.
- Follow the installation instructions provided on Docker’s website.
- Once installed, launch Docker Desktop and ensure it is running.
-
Linux:
-
Follow the Docker Linux installation guide for your distribution (for example, Ubuntu or CentOS).
-
Start the Docker service using:
sudo systemctl start docker
-
Optionally, enable Docker to start at boot:
sudo systemctl enable docker
-
Pull the Docker Image for CFEIntact
With Docker installed and running, you can now download the pre-configured Docker image for CFEIntact:
-
Open your terminal or command prompt and execute the following command:
docker pull cfelab/cfeintact
This command downloads the latest version of the CFEIntact image from Docker Hub.
-
To verify the installation, run:
docker run --rm cfelab/cfeintact version
You should see an output similar to:
1.23.2
Next: data preparation.