# LmckPython **Repository Path**: zhanggh8023/LmckPython ## Basic Information - **Project Name**: LmckPython - **Description**: 自学项目的学习笔记 - **Primary Language**: HTML - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-29 - **Last Updated**: 2023-12-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: 学习, Python ## README # LmckPython ## 生成虚拟环境依赖包requirements.txt,用于项目发布。这样即使新的环境没有安装pipenv也可以直接安装依赖包。 #### 方法1:pipenv run pip freeze > requirements.txt #### 方法2:pipenv lock -r --dev > requirements.txt ## 虚拟环境中导入requirements.txt #### pipenv install -r requirements.txt #