


You can install pip3 by executing this next command: apt install python3-pipīy executing the above command, all of the dependencies required for pip will be installed along with PiP. This means that pip3 is not installed on your server. If you get the following output: Command 'pip3' not found You can do this with the command: pip3 -V You should get the following output: python3 -Vīefore proceeding with the installation of pip, it is a good idea to confirm whether pip is already installed on your server. To check if Python 3 is already installed on your server, use the command below: python3 -V We assume that you already have the default Python version installed on your server. You can also restart your server to ensure that all of the latest configuration files get read and used. Of course, you will need to replace Server_IP_Address and Port_Number with your actual server IP address and SSH port number.īy running the following command, all installed packages will be updated and upgraded: apt update & apt upgrade -y First, you need to login to your Ubuntu 20.04 VPS via SSH as the root user account, or as a user with sudo privileges: ssh -p Port_Number
