How to install PIP on Python 3.6?

2019-01-16 04:26发布

I'm trying to Install PIP for python 3.6 and I've looked over YouTube for tutorials but all of them seem to be out of date and none of them have seemed to work. Any information would be helpful so I can carry on with my project.

标签: python pip
13条回答
Emotional °昔
2楼-- · 2019-01-16 05:13

I Used 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)
查看更多
登录 后发表回答