This commit is contained in:
林觅
2026-04-10 10:58:32 +08:00
parent 87786bac50
commit 85d921b501
4 changed files with 47 additions and 0 deletions

1
.gitignore vendored
View File

@@ -9,6 +9,7 @@ bin-release/
__pycache__/ __pycache__/
logs/ logs/
.env/ .env/
.venv/
# Executables # Executables
# 媒体文件 # 媒体文件

View File

@@ -0,0 +1,29 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "a5470bfd",
"metadata": {},
"outputs": [],
"source": [
"python.exe -m venv .venv\n",
"# 激活虚拟环境\n",
".venv\\Scripts\\Activate.ps1"
]
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.13.5"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

0
beeWare_project/py.py Normal file
View File

17
py.code-workspace Normal file
View File

@@ -0,0 +1,17 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.autoSave": "onFocusChange",
"editor.wordWrap": "on",
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnType": true,
"editor.wordBasedSuggestions": "off"
},
"python.envFile": "${workspaceFolder}/.venv"
}
}