当前最推荐
方式 A:源码命令行体验
这是当前最准确、最稳的公开体验方式,适合开发者、技术用户、内测用户,以及需要快速验证功能链路的人。
一、macOS
方式 A:通过源码命令行体验
适合开发者、技术用户、内测用户。
git clone https://cnb.cool/aidiyangyu/agentcore-os.git
cd agentcore-os
npm install
npm run dev:clean
首次进入后,建议先去“设置”里完成 provider、base URL、model、API key 配置,再从“内容创作 / 销售跟进 / 研究分析”三条核心链路开始体验。
方式 B:通过 .pkg 命令行安装桌面版
只适合已经拿到 mac 安装包的用户,例如:AgentCore OS_0.2.0-beta.2_aarch64.pkg
sudo installer -pkg "/path/to/AgentCore OS_0.2.0-beta.2_aarch64.pkg" -target /
open "/Applications/AgentCore OS.app"
sudo xattr -dr com.apple.quarantine "/Applications/AgentCore OS.app"
open "/Applications/AgentCore OS.app"
方式 C:通过 .dmg 命令行安装桌面版
如果你拿到的是:AgentCore OS_0.2.0-beta.2_aarch64.dmg
hdiutil attach "/path/to/AgentCore OS_0.2.0-beta.2_aarch64.dmg"
sudo cp -R "/Volumes/AgentCore OS/AgentCore OS.app" /Applications/
hdiutil detach "/Volumes/AgentCore OS"
open "/Applications/AgentCore OS.app"
sudo xattr -dr com.apple.quarantine "/Applications/AgentCore OS.app"
open "/Applications/AgentCore OS.app"
二、Windows
方式 A:通过源码命令行体验
这是当前最准确、最稳的 Windows 命令行体验方式。
git clone https://cnb.cool/aidiyangyu/agentcore-os.git
cd agentcore-os
npm install
npm run dev:clean
方式 B:通过 Windows 安装包命令行安装
如果你已经拿到了 Windows 安装包,请根据文件类型选择命令。
Start-Process -FilePath "C:\path\to\AgentCore-OS-setup.exe" -Wait
Start-Process -FilePath "C:\path\to\AgentCore-OS-setup.exe" -ArgumentList "/S" -Wait
Start-Process msiexec.exe -ArgumentList '/i "C:\path\to\AgentCore-OS.msi"' -Wait
Start-Process msiexec.exe -ArgumentList '/i "C:\path\to\AgentCore-OS.msi" /passive /norestart' -Wait