美文网首页
django第三方库管理 requirements.txt

django第三方库管理 requirements.txt

作者: 无心文先森 | 来源:发表于2020-08-08 16:07 被阅读0次

    每一个项目都需要用到很多模块,并且每个模块版本可能都不一样
    那该如何安装?

    开发中我们会给每一个项目配备一个requirements.txt文件里面书写了该项目所有的模块及版本

    生成requirements.txt,有两种方式:

    第一种 适用于 单虚拟环境的情况

      pip freeze > requirements.txt
    

    这种方式,会将环境中的依赖包全都加入,如果使用的全局环境,则下载的所有包都会在里面,不管是不时当前项目依赖的,不推荐

    第二种 (推荐) 使用 pipreqs ,github地址为: https://github.com/bndr/pipreqs

    # 安装
    pip install pipreqs
    # 在当前目录生成
    pipreqs . --encoding=utf8 --force
    

    注意 --encoding=utf8 为使用utf8编码,不然可能会报UnicodeDecodeError: 'gbk' codec can't decode byte 0xae in position 406:illegal multibyte sequence 的错误。

    --force 强制执行,当 生成目录下的requirements.txt存在时覆盖。

    使用requirements.txt安装依赖的方式:

      pip install -r requirements.txt

    相关文章

      网友评论

          本文标题:django第三方库管理 requirements.txt

          本文链接:https://www.haomeiwen.com/subject/eeyhdktx.html