Question

python3-pip has no installation candidate

I am having an error after typing:

sudo apt-get install python3-pip

This is the error:

Package python3-pip is not available but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python3-pip' has no installation candidate

What should I do?

 46  90062  46
1 Jan 1970

Solution

 83

You need to update source list first, Try running

sudo apt-get update
sudo apt-get upgrade  #Optional
sudo apt install python3-pip
2020-08-26

Solution

 18

hi I had same issue but I ran the following commands to fix it

  • sudo add-apt-repository universe
  • sudo apt-get update
  • sudo apt install python3-pip

and it solved the problem

2022-01-04