Home > Blockchain >  Ubuntu 20.04.4 E: Unable to locate package python3-pip
Ubuntu 20.04.4 E: Unable to locate package python3-pip

Time:08-04

I'm trying to install an application that requires Ubuntu 20.04 and requires python3-pip.

I have verified that Python 3.9.7 is installed

When I run sudo apt-get install python3-pip, I get the error: "E: Unable to locate package python3-pip"

I've tried the following solutions and none had any effect:

  1. sudo apt-get install software-properties-common

    sudo apt-add-repository universe

    sudo apt-get update

    sudo apt-get install python-pip

  2. sudo add-apt-repository universe

    sudo apt-get update

    sudo apt-get install python-pip

  3. sudo apt-get install curl

    • this just gives an error that Package 'curl' has no installation candidate

Is there another way to get pip installed?

CodePudding user response:

Does python3-venv installation works?

CodePudding user response:

I think you should try to follow this instruction hope you get it! https://www.linuxcapable.com/how-to-install-python-3-8-on-ubuntu-22-04-lts/

  • Related