侧边栏壁纸
博主头像
无常菌技术分享 博主等级

行动起来,活在当下

  • 累计撰写 8 篇文章
  • 累计创建 1 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

早柚核心Gscore如何安装

Administrator
2024-11-18 / 0 评论 / 1 点赞 / 1044 阅读 / 0 字

下载/克隆仓库

  • Bot目录的上级(例如你的bot目录为./Wuyi/nb2,则cd至./Wuyi处)

  • 输入安装core命令

git clone https://github.com/Genshin-bots/gsuid_core.git --depth=1 --single-branch

  • 进入文件夹内

cd gsuid_core

安装依赖

💡 提醒

可以根据你的喜好,自行选择uv, pdm, poetry等环境工具安装Core

或使用裸环境python&pip安装

# uv安装依赖方式
uv sync
uv run python -m ensurepip

# poetry安装依赖方式
poetry install

# pdm安装依赖方式
pdm install
pdm run python -m ensurepip

# 不推荐该方式
python -m pip install -r requirements.txt

1
2

安装所需插件可选

cd gsuid_core
cd plugins
# 安装v4 GenshinUID
git clone -b v4 https://github.com/KimigaiiWuyi/GenshinUID.git --depth=1 --single-branch

🎉你已经成功安装GsCore

1

评论区