Unable to locate package python3-pip(阿里云服务器,ubuntu)

参考链接:https://community.c9.io/t/how-to-install-pip-for-python3/3196

ubuntu系统默认没有pip3

在安装pip3之前需要先更新下:

    sudo apt-get update

然后在执行安装命令

    sudo apt-get install python3-pip

 

安装完成之后可能还会遇到:ImportError: cannot import name 'main'

参考链接:https://stackoverflow.com/questions/49836676/error-after-upgrading-pip-cannot-import-name-main

安装完成后的pip3版本是8.1.1。pip在后期版本中调整了内部构件。

恢复pip3可以执行如下命令:

    sudo python3 -m pip uninstall pip && sudo apt install python3-pip --reinstall

 

升级pip3 ,我是将python2 的pip卸载了

    python -m pip uninstall pip

再执行:

    python3 -m pip install --upgrade pip

之后pip 命令直接属于python3 了

你可能感兴趣的:(编程调试)