Check if pip is already installed using
pip3 -V
or
pip3 --version
If not use this command to install it:
sudo apt install python3-pip
Now you can use
python3 -m pip install packageName
to install packages using pip.
2024-03-05 12:18:42
Check if pip is already installed using
pip3 -V
or
pip3 --version
If not use this command to install it:
sudo apt install python3-pip
Now you can use
python3 -m pip install packageName
to install packages using pip.