macOS
macOS 12 Monterey 或更高版本
- Apple Silicon版本 1.18.44 · 195 MB
- Intel版本 1.18.44 · 200 MB
我该选哪个? 打开苹果菜单,选择“关于本机”。显示“芯片:Apple M…”即为 Apple Silicon;显示“处理器:Intel”即为 Intel。
选择你的系统。所有下载均为当前版本。
macOS 12 Monterey 或更高版本
我该选哪个? 打开苹果菜单,选择“关于本机”。显示“芯片:Apple M…”即为 Apple Silicon;显示“处理器:Intel”即为 Intel。
Windows 10 或 11(64 位)
我该选哪个? 打开“设置”→“系统”→“系统信息”。“系统类型”会显示基于 x64 或基于 ARM 的处理器。
64 位 Ubuntu 20.04、Debian 11、Fedora 36 或更高版本
我该选哪个? 运行 uname -m:x86_64 表示 x64,aarch64 表示 ARM64。Debian 和 Ubuntu 用 .deb,Fedora 和 openSUSE 用 .rpm,其他发行版用 AppImage。
每个桌面版本需要约 1 GB 可用磁盘空间。 macOS 应用已由 Apple 签名并完成公证,打开时不会出现安全警告。
从“应用程序”、开始菜单或应用启动器中打开。
使用 Google 或电子邮件地址继续。登录免费,首次登录时会创建账户。
订阅 Pro 或 Max 方案即可让智能体开始工作。 比较方案
AicippY 会自动检查更新,并在你下次重启时安装。
Debian、Ubuntu 及其衍生发行版:
sudo apt install ./aicippy-code-desktop-linux-amd64.deb
sudo apt install ./aicippy-code-desktop-linux-arm64.debFedora、RHEL、openSUSE 及其衍生发行版:
sudo dnf install ./aicippy-code-desktop-linux-x86_64.rpm
sudo dnf install ./aicippy-code-desktop-linux-aarch64.rpm任意发行版,无需安装(AppImage):
chmod +x aicippy-code-desktop-linux-x86_64.AppImage && ./aicippy-code-desktop-linux-x86_64.AppImage
chmod +x aicippy-code-desktop-linux-arm64.AppImage && ./aicippy-code-desktop-linux-arm64.AppImage如果 AppImage 无法启动,请安装 FUSE 2(libfuse2 软件包)。
更喜欢命令行?一条命令即可安装 AicippY CLI。版本 1.18.42
适用于 macOS 和 Linux。需要 curl,macOS 另需 unzip,Linux 另需 tar。
curl -fsSL https://www.aicippy.com/install | bash适用于 macOS、Windows 和 Linux。需要带 npm 的 Node.js。
npm install -g @aicippy/aicippy-code适用于 macOS、Windows 和 Linux。需要 Bun。
bun install -g --trust @aicippy/aicippy-code可在任何装有 Docker 的电脑上以容器方式运行。
docker run -it --rm public.ecr.aws/m7a0v2i6/aicippy-code适用于 Windows 10 和 11。粘贴到 PowerShell 中运行。安装到你的用户文件夹,将 AicippY 加入 PATH,无需管理员权限。
$ProgressPreference = "SilentlyContinue"
$arch = if ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") { "arm64" } else { "x64" }
$version = (Invoke-RestMethod "https://www.aicippy.com/releases/cli/latest.txt").Trim()
$dir = "$env:LOCALAPPDATA\AicippY\bin"
New-Item -ItemType Directory -Force -Path $dir | Out-Null
Invoke-WebRequest "https://www.aicippy.com/releases/cli/$version/aicippy-code-windows-$arch.zip" -OutFile "$env:TEMP\aicippy-code.zip"
Expand-Archive "$env:TEMP\aicippy-code.zip" -DestinationPath $dir -Force
$path = [Environment]::GetEnvironmentVariable("Path", "User")
if (($path -split ";") -notcontains $dir) { [Environment]::SetEnvironmentVariable("Path", "$path;$dir", "User") }或者自行下载程序,将 aicippy-code.exe 放到 PATH 中的某个文件夹:
然后打开项目文件夹并运行 aicippy-code. 安装后请打开新的终端窗口,以便找到该命令。
在你正在使用的编辑器中使用 AicippY。
或者使用编辑器的命令在终端中安装:
code --install-extension aicippy-code-1.18.42.vsix
cursor --install-extension aicippy-code-1.18.42.vsix
windsurf --install-extension aicippy-code-1.18.42.vsix
codium --install-extension aicippy-code-1.18.42.vsixAicippY 也可以在编辑器的内置终端中运行:打开终端并运行 aicippy-code。
Zed 通过 Agent Client Protocol 连接 AicippY。先安装终端版本,然后将以下内容添加到 Zed 设置文件:
{
"agent_servers": {
"AicippY": {
"type": "custom",
"command": "aicippy-code",
"args": ["acp"]
}
}
}然后打开智能体面板,与 AicippY 开始新的对话。