mirror of
https://github.com/automazeio/ccpm.git
synced 2025-10-09 13:41:06 +03:00
- Changed installation script URLs from the old path to the new `/install` path for improved clarity and reliability. - Updated both English and Chinese README files to reflect the new URLs. - Ensured consistency across Unix/Linux/macOS and Windows installation instructions. This change enhances the user experience by providing a clear and stable source for installation scripts.
Quick Install
Unix/Linux/macOS
curl -sSL https://automaze.io/ccpm/install | bash
Or with wget:
wget -qO- https://automaze.io/ccpm/install | bash
Windows (PowerShell)
iwr -useb https://automaze.io/ccpm/install | iex
Or download and execute:
curl -o ccpm.bat https://automaze.io/ccpm/install && ccpm.bat
One-liner alternatives
Unix/Linux/macOS (direct commands)
git clone https://github.com/automazeio/ccpm.git . && rm -rf .git
Windows (cmd)
git clone https://github.com/automazeio/ccpm.git . && rmdir /s /q .git
Windows (PowerShell)
git clone https://github.com/automazeio/ccpm.git .; Remove-Item -Recurse -Force .git