Skip to content

Prerequisites checklist for Linux

pestovid edited this page Apr 24, 2024 · 2 revisions

Prerequisites for Linux

  1. Docker is running
  2. Python 3.6+ installed
  3. Unzip installed
  4. Git installed

1. Check if Docker is running.

In terminal execute:

docker --version

You should get installed docker version, for example:\

Docker version 24.0.6, build ed223bc

Check if user has sufficient permissions to use docker. In terminal execute:

docker images

Should display images list (may be empty). No errors should be displayed.

2. Python 3.6+ installed.

In terminal execute:

python --version

You should get installed python version (should be later then 3.6), for example:

Python 3.10.12

Check pip version by executing:

pip --version

You should get:

pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)

3. Check if Unzip installed.

In terminal execute:

unzip --version

You should get installed Unzip version, for example:

UnZip 6.00 of 20 April 2009, by Debian. Original by Info-ZIP.
....

4. Check if Git installed.

In terminal execute:

git --version

You should get installed Git version, for example:

git version 2.42.0