• linux软件管理之python包管理


    Python包管理


    ====================================================================================
    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





  • 相关阅读:
    java安全编码指南之:Number操作
    java安全编码指南之:声明和初始化
    java安全编码指南之:Mutability可变性
    巧用HashMap一行代码统计单词出现次数
    java安全编码指南之:基础篇
    drf 路由生成
    drf 视图使用及源码分析
    drf Response浅析
    drf Serializer基本使用
    drf APIView源码浅析
  • 原文地址:https://www.cnblogs.com/anttech/p/10612378.html
Copyright © 2020-2023  润新知