Files
Ran Aroussi 44d7dc369e Update installation script URLs in README files to point to the new install path
- 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.
2025-09-24 15:15:30 +01:00
..

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