Linux dependencies

Note: Don't follow this step if you plan to run BlurIt OP on Windows. Go there instead.

This script will install the software requirements to run BlurIt On-Premise on your server. It will install Nvidia drivers, Docker CE, and Nvidia-docker on Ubuntu, Debian, and RHEL/CentOS. If you are installing BlurIt on an old server and want to maintain specific version dependencies, we don't recommend to use this script but rather to manually install everything.

To begin, extract the BlurIt OP archive using the following command:

tar -xzf filename.tar.gz
cd blurit-op

Replace "filename" with the actual name of the archive that was provided to you.

To start the script, execute the following command:

sudo ./install_dependencies.sh

🚨 After execution of the script, please reboot the server to load the Nvidia drivers and go to the Configuration page. 🚨

Choice 2 : manual dependencies installation

Nvidia drivers Installation

  1. Download the NVIDIA driver >= 470 runfile from: https://www.nvidia.com/Download/index.aspx?lang=en-us

  2. Open a terminal and navigate to the directory where the downloaded runfile is located.

  3. $ chmod +x <filename>.run Replace <filename> with the actual name of the downloaded runfile.

  4. $ sudo ./<filename>.run

  5. $ sudo reboot

Docker Installation

The Docker installation documentation is here.

Post-install docker linux (required):

Docker-compose

Docker-compose version must be <= 1.29.

Nvidia-docker installation

Nvidia-docker installation documentation is here.

Configure the Docker daemon to recognize the NVIDIA Container Runtime:

Restart the Docker daemon to complete the installation after setting the default runtime:

Test if Nvidia-docker is installed:

This should result in a console output shown below:

Configuring daemon.json

Open /etc/docker/daemon.json with your favorite text editor.

Add "default-runtime": "nvidia", to the json. Exemple:

Last updated