如何在启用 Python 虚拟环境 (venv) 的项目中编写 .gitignore?
如何在启用了虚拟环境 (venv) 的 python 项目中编写 .gitignore
在使用 python 虚拟环境 (venv) 管理项目时,往往会遇到 .gitignore 文件的编写问题,尤其是当项目中包含了 flask 框架。这里将介绍如何在启用 venv 的情况下编写 .gitignore。
为了忽略 venv 创建的目录和文件,可以将它们添加到 .gitignore 中。一般而言,venv 会创建以下目录和文件:
此外,如果使用 flask 框架,官方推荐的忽略文件模板可以包含以下内容:
立即学习“Python免费学习笔记(深入)”;
# Bytecode__pycache__*.pyc# C Extensions*.so# Distribution / packaging.Pythonbuilddevelop-eggsdistdownloadseggs.eggsliblib64partssdistvarwheels*.egg-info.installed.cfg# PyInstaller# Usually these files are written by a script from a template when building# the exe, so you can choose to ignore all of them if they don't contain# anything essential.*.manifest*.spec# Installer logspip-log.txtpip-delete-this-directory.txt# Unit test / coverage reportshtmlcov.tox.coverage.coverage.*.cachenosetests.xmlcoverage.xml*.cover# Translations*.mo# Django stuff:*.loglocal_settings.pydb.sqlite3mediastaticadmin# Flask stuff:instance.webassets-cache
要点: