Linux dependencies
Note: Don't follow this step if you plan to run BlurIt OP on Windows. Go there instead.
Choice 1 : use our dependencies installation script (recommended)
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-opReplace "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
Download the NVIDIA driver >= 470 runfile from: https://www.nvidia.com/Download/index.aspx?lang=en-us
Open a terminal and navigate to the directory where the downloaded runfile is located.
$ chmod +x <filename>.runReplace<filename>with the actual name of the downloaded runfile.$ sudo ./<filename>.run$ 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