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相关开发、开源飞控相关开发、qt相关开发、无人机地面站相关开发
    转载 ardupilot 学习
    PX4 IO板启动流程
    PX4 FMU启动流程 1.nsh
    PX4 FMU启动流程 2. 一、 nsh_newconsole
    PX4 FMU启动流程 2. 二、 nsh_initscript
    Pixhawk源码快速阅读 02_进程间通信
    PX4 FMU [5] Loop
    Oracle 执行JOB程序自动存储数据
    C# 禁止非数字输入TextBoox
  • 原文地址:https://www.cnblogs.com/bonelee/p/8183038.html
Copyright © 2011-2022 走看看