加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.py 593 Bytes
一键复制 编辑 原始数据 按行查看 历史
广大菜鸟 提交于 2021-02-27 14:30 . 首次上传
# 导出项目需要的文件
import os
import sys
# 找到当前目录
project_root = os.path.dirname(os.path.realpath(__file__))
print(project_root)
# 找到解释器,虚拟环境目录
python_root = sys.exec_prefix
print(python_root)
# 1、导出全部第三方库的信息
# 拼接生成requirement命令
command = python_root + '\Scripts\pip freeze > ' + project_root + '\\requirements1.txt'
os.system(command)
# 2、导出本次项目需要用到的第三方库信息
# 需要先安装pipreq模块:pip install pipreqs
os.system("pipreqs ./ --encoding=utf-8")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化