zoukankan      html  css  js  c++  java
  • 查找python项目依赖并生成requirements.txt——pipreqs 真是很好用啊

    查找python项目依赖并生成requirements.txt

    转自:http://blog.csdn.net/orangleliu/article/details/60958525

    一起开发项目的时候总是要搭建环境和部署环境的,这个时候必须得有个python第三方包的list,一般都叫做requirements.txt。 如果一个项目使用时virtualenv环境,还好办 pip freeze 就可以解决,但是如果一个项目的依赖list没有维护,而且又是环境混用,那就不好整理的呀,不过,这里安利一个工具 pipreqs,可以自动根据源码生成 requirements.txt .

    使用pip freeze

    $ pip freeze > requirements.txt

    这种方式配合virtualenv 才好使,否则把整个环境中的包都列出来了。

    使用 pipreqs

    这个工具的好处是可以通过对项目目录的扫描,自动发现使用了那些类库,自动生成依赖清单。

    缺点是可能会有些偏差,需要检查并自己调整下。

    # pip install pipreqs
    
    # 使用方式也比较简单
    pipreqs ./
    
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Starting new HTTPS connection (1): pypi.python.org
    INFO: Successfully saved requirements file in ./requirements.txt
    
    cat requirements.txt
    
    Django == 1.6
    django_redis == 4.3.0
    redis == 2.10.5
    django_redis_cache == 1.6.5
    simplejson == 3.8.2
    Twisted == 16.0.0
    pycrypto == 2.6.1
    ConcurrentLogHandler == 0.9.1
    cx_Oracle == 5.2.1
    ujson == 1.35

    有时候结果可能会有些偏差,这里并没有用Oracle的相关驱动,根据的需要修改 requirements.txt 就好了。

    how python project auto generate requirements.txt ?

  • 相关阅读:
    Linux权限对文件或者目录的影响
    Linux基础命令chmod(什么是权限?如何设置权限)
    Shell编程——素数的判断
    Shell编程——阶乘
    Shell编程——回文数
    汇编(8253计数器)
    汇编(8255A的工作方式1)
    汇编(8255A的方式0)
    汇编(程序查询方式控制输入输出)
    Shell函数、接受用户输入
  • 原文地址:https://www.cnblogs.com/bonelee/p/8183038.html
Copyright © 2011-2022 走看看