Answers for "E: Package 'python-pip' has no installation candidate"

1

unable to locate package python-pip

apt-get install curl

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

python get-pip.py
Posted by: Guest on December-11-2020
1

pip3 has no installation candidate

// Run
sudo nano /etc/apt/sources.list

// And add these lines.

deb http://archive.ubuntu.com/ubuntu bionic main universe
deb http://archive.ubuntu.com/ubuntu bionic-security main universe 
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe

// Press Ctrl+O to save the file. Press Ctrl+X to quit nano. Then run:

sudo apt update
sudo apt install python3-pip
Posted by: Guest on May-23-2021
0

Package 'python3-pip' has no installation candidate

# Just update and upgrade
sudo apt update && sudo apt upgrade -y
Posted by: Guest on October-03-2021

Code answers related to "E: Package 'python-pip' has no installation candidate"

Python Answers by Framework

Browse Popular Code Answers by Language