====================================================================================
python ------ rpm
pip ------ yum
安装setuptools
[root@localhost ~]# yum -y install git
[root@localhost ~]# git clone https://github.com/pypa/setuptools.git
[root@localhost ~]# cd setuptools
[root@localhost ~]# python setup.py install
实时解析nginx 访问日志ngxtop
1. 源码安装
[root@localhost ~]# wget https://github.com/lebinh/ngxtop/archive/master.zip -O ngxtop-master.zip
[root@localhost ~]# unzip ngxtop-master.zip
[root@localhost ~]# cd ngxtop-master
[root@localhost ~]# python setup.py install
2. nginx 基本示例
[root@localhost ~]# ngxtop -c /usr/local/nginx/conf/nginx.conf //实时状态
[root@localhost ~]# ngxtop -c /usr/local/nginx/conf/nginx.conf top remote_addr //top 10
安装pip软件包
[root@localhost ~]# wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certificate
[root@localhost ~]# tar -xzvf pip-1.5.4.tar.gz
[root@localhost ~]# cd pip-1.5.4
[root@localhost ~]# python setup.py install
使用pip安装软件包
1. 安装软件包
[root@localhost ~]# pip install SomePackage
2. 检查哪些包需要更新
[root@localhost ~]# pip list --outdated
3. 升级软件包
[root@localhost ~]# pip install --upgrade SomePackage
4. 卸载软件包
[root@localhost ~]# pip uninstall SomePackage
pip 安装redis 实战案例
[root@localhost ~]# pip install redis
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:linux软件管理之python包管理 - Python技术站