How to install pip in CentOS 7?

前端 未结 10 1240
暖寄归人
暖寄归人 2020-12-02 05:57

CentOS 7 EPEL now includes Python 3.4: yum install python34

However, when I try that, even though Python 3.4 installs successfully, it doesn\'t appear t

10条回答
  •  醉酒成梦
    2020-12-02 06:58

    curl https://bootstrap.pypa.io/get-pip.py | python3.4
    

    Or if you don't have curl for some reason:

    wget https://bootstrap.pypa.io/get-pip.py
    python3.4 get-pip.py
    

    After this you should be able to run

    $ pip3
    

提交回复
热议问题