rambo 3 weeks ago
parent
commit
cc00169a84
2 changed files with 26 additions and 0 deletions
  1. 26 0
      README.md
  2. BIN
      requestments.txt

+ 26 - 0
README.md

@@ -0,0 +1,26 @@
+# 客户端抠图项目
+### - 初始化项目
+```
+#安装虚拟环境
+python -m venv venv
+
+#启动虚拟环境
+
+#win系统下,根目录执行
+
+.\venv\Scripts\activate
+
+#安装依赖
+pip install -r requirements.txt
+```
+### - 启动项目
+```
+# 在虚拟环境中执行
+python main.py
+```
+
+### - 更新依赖
+```
+# 在虚拟环境中执行
+pip freeze > .\requestments.txt
+```

BIN
requestments.txt