python依赖包管理requirements

简介

python项目依赖包管理 requirements+pipreqs

生成安装环境中所有依赖包命令

pip freeze >requirements.txt

只需要项目中的依赖包命令

pip install pipreqs #安装包 # pipregs 文件目录 pipreqs ./ #会报编码错误
pipreqs ./ --encoding=utf-8 # 添加编码,若存在 requirements.txt文件会报 WARNING: Requirements.txt already exists, use --force to overwrite it

//存在 requirements.txt 使用命令
pipreqs ./ --encoding=utf-8 --force  # 创建成功覆盖文件  

使用requirements.txt自动安装所有依赖包

pip install -r requirements.txt 
pip3 install -i http://mirrors.aliyun.com/pypi/simple/ -r requirements.txt #使用国内镜像速度快 

你可能感兴趣的:(python,requirements,python)