Recommended way to install pip(3) on centos7

前端 未结 8 1835
梦如初夏
梦如初夏 2020-12-08 07:12

I am interrested in knowing the recommended way to install pip3 for python3.6 (as of today, may 2018) on current version of centos7 (7.5.1804) and the accepted answer of How

8条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-08 07:30

    Follow these commands in Centos 7

    yum install python36
    yum install python36-devel
    yum install python36-setuptools
    easy_install-3.6 pip
    

    to check the pip version:

    pip3 -V
    pip 18.0 from /usr/local/lib/python3.6/site-packages/pip-18.0-py3.6.egg/pip (python 3.6)
    

提交回复
热议问题