macOS
macOS 12 Monterey 或更新版本
- Apple Silicon版本 1.18.44 · 195 MB
- Intel版本 1.18.44 · 200 MB
我該選哪一個? 開啟蘋果選單並選擇「關於這台 Mac」。顯示「晶片:Apple M…」即為 Apple Silicon;顯示「處理器:Intel」即為 Intel。
選擇你的系統。所有下載都是目前的版本。
macOS 12 Monterey 或更新版本
我該選哪一個? 開啟蘋果選單並選擇「關於這台 Mac」。顯示「晶片: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 開始新的對話。