<\/span><\/h2>\n\n\n\nFirst, log in to your Debian 10 server via SSH as the root user:<\/p>\n\n\n\n
ssh root@IP_Address -p Port_number<\/pre>\n\n\n\nOnce login, update your system packages with the following command:<\/p>\n\n\n\n
apt-get update -y<\/pre>\n\n\n\n<\/span>Step 2: Install Required Dependencies<\/span><\/h2>\n\n\n\nBefore starting, Python3 must be installed in your system. If not installed, you can install it using the following command:<\/p>\n\n\n\n
apt-get install python3 python3-pip git unzip -y<\/pre>\n\n\n\nOnce installed, verify the installed version of Python with the following command:<\/p>\n\n\n\n
python3 --version<\/pre>\n\n\n\nOutput:<\/p>\n\n\n\n
Python 3.7.3\n<\/pre>\n\n\n\nNext, you will need to upgrade the PIP package to the latest version. You can upgrade it with the following command:<\/p>\n\n\n\n
pip3 install --upgrade pip<\/pre>\n\n\n\nNext, verify the PIP version using the following command:<\/p>\n\n\n\n
pip3 --version<\/pre>\n\n\n\nOutput:<\/p>\n\n\n\n
pip 21.0.1 from \/usr\/local\/lib\/python3.7\/dist-packages\/pip (python 3.7)\n<\/pre>\n\n\n\n