# python-study **Repository Path**: XuWuJing/python-study ## Basic Information - **Project Name**: python-study - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-11 - **Last Updated**: 2023-05-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: python-study ## README # python-study python-study是本人在学习python的一些练习代码汇总的项目。 ## 生成环境配置文件requirements.txt 方法一:整个环境下的安装包都保存到requirements.txt中 pip freeze > requirements.txt 方法二:只生成单个项目中的使用到的安装包 #### 设置编码和覆盖 pip install pipreqs pipreqs ./ --encoding=utf8 --force