centos安裝setuptools\pip
setuptools 是一組由PEAK(Python Enterprise Application Kit)開發(fā)的Python的distutils工具的增強(qiáng)工具,可以讓程序員更方便的創(chuàng)建和發(fā)布 Python的egg 包,特別是那些對(duì)其它包具有依賴性的狀況。
pip/easy_install,python的包管理器,相當(dāng)于readhat的yum,官方的說法是pip改善了easy_install的一些缺點(diǎn),可能理解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