From 3c54bf5f4c870dc4f33ede17f6261f6f99c3aa40 Mon Sep 17 00:00:00 2001 From: sairate Date: Sat, 7 Jun 2025 14:25:40 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E8=B4=AA=E5=90=83?= =?UTF-8?q?=E8=9B=87=E6=B8=B8=E6=88=8F-=20=E6=96=B0=E5=A2=9E=E8=B4=AA?= =?UTF-8?q?=E5=90=83=E8=9B=87=E6=B8=B8=E6=88=8F=E7=9A=84=20Python=20?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=20-=20=E6=B7=BB=E5=8A=A0=E7=94=A8=E4=BA=8E?= =?UTF-8?q?=E5=AE=89=E8=A3=85=20freegames=20=E5=BA=93=E7=9A=84=E8=AF=B4?= =?UTF-8?q?=E6=98=8E=E5=88=B0=20README.md=20-=20=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E5=A4=9A=E4=B8=AA=20.idea=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=BB=A5=E8=AE=BE=E7=BD=AE=20IDE=20=E9=A1=B9=E7=9B=AE=E7=8E=AF?= =?UTF-8?q?=E5=A2=83=20-=20=E9=85=8D=E7=BD=AE=20.gitignore=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=BB=A5=E5=BF=BD=E7=95=A5=E4=B8=8D=E5=BF=85=E8=A6=81?= =?UTF-8?q?=E7=9A=84=20IDE=20=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++++++++- snack.py => snake.py | 0 2 files changed, 8 insertions(+), 1 deletion(-) rename snack.py => snake.py (100%) diff --git a/README.md b/README.md index 139aeda..2514d9e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ +## 环境的安装 ```bash -pip install -i https://mirrors.aliyun.com/pypi/simple/ freegames +pip install -i https://mirrors.aliyun.com/pypi/simple/ freegames pyinstaller +``` + +## + +```bash +pyinstaller --onefile --noconsole snake.py ``` \ No newline at end of file diff --git a/snack.py b/snake.py similarity index 100% rename from snack.py rename to snake.py