-
Install Python on the Linux server if it has not already been installed.
Thepythoncommand can be used to verify the Python version.
Linux Terminal: Python version check
-
Install or upgrade PIP on the Linux server
-
A PIP installation can be done using the following command.
$ sudo dnf install pip -
A PIP pip upgrade can be done using the following command.
$ /usr/bin/python3.9 -m pip install --upgrade pip
-
-
Upgrade setuptools.
Use the following command to upgrade setuptools.
$sudo pip3 install --upgrade setuptools
-
Install tox.
tox can be installed using the following command.
$ sudo pip3 install tox
-
Install git.
git can be installed using the following command.
$ sudo dnf install -y git
-
Install cryptography.
cryptography can be installed using the following command.
$ sudo pip3 install cryptography