“E: Unable to locate package python-pip” on Ubuntu 18.04

前端 未结 4 1663
臣服心动
臣服心动 2020-12-16 09:14

I am trying to install virtualenv on Ubuntu.

First it said command \'pip\' not found, so I typed

sudo apt install python-pip
         


        
4条回答
  •  北海茫月
    2020-12-16 10:03

    Try the following commands in terminal, this will work better:

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

提交回复
热议问题