Getting Started with Python in VS Code
vscode plugins:
Python
&&Python Debugger
Ctrl+Shift+P
, start typing thePython: Create Environment
Ctrl+Shift+P
, start typing thePython: Select Interpreter
python 项目依赖文件导出
# 导出依赖
pip3 freeze >requirements.txt
# 安装依赖
pip3 install -r requirements.txt