Initial commit

Created from https://vercel.com/new
This commit is contained in:
CJackHwang
2026-01-21 15:14:49 +00:00
commit ea4de62fc3
21 changed files with 266477 additions and 0 deletions

15
install-ds.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
:: 创建 conda 环境Python 3.11,环境名为 dsapi
echo 正在创建 conda 环境 dsapi...
call conda create -n dsapi python=3.11 -y
:: 激活 conda 环境
echo 正在激活环境 dsapi...
call conda activate dsapi
:: 安装 requirements.txt 中的依赖(使用 pip
echo 正在安装 requirements.txt 中的依赖...
pip install -r requirements.txt
echo 环境 dsapi 已创建并安装好依赖。
pause