美文网首页我爱编程
centos安装setuptools\pip

centos安装setuptools\pip

作者: 开到荼蘼的弓 | 来源:发表于2018-05-25 21:12 被阅读45次

centos安装setuptools\pip

setuptools 是一组由PEAK(Python Enterprise Application Kit)开发的Python的distutils工具的增强工具,可以让程序员更方便的创建和发布 Python的egg 包,特别是那些对其它包具有依赖性的状况。

pip/easy_install,python的包管理器,相当于readhat的yum,官方的说法是pip改善了easy_install的一些缺点,可能理解pip是easy_intall替代工具

setuptools安装方法:

wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
pip安装方法:

wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py -O - | python

相关文章

网友评论

    本文标题:centos安装setuptools\pip

    本文链接:https://www.haomeiwen.com/subject/tmzujftx.html