aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-02 14:54:19 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-02 14:54:19 +0800
commit0c1a2d15f119bf4c11303ff9aecc9e69a6b3a2ad (patch)
treecbfb71b847a834e0a05eba430e85e10d8c7174b1 /README.md
parentc990959635d6a3496ca15a56b4ee85c6ca357987 (diff)
docs: add manual installation instructions to README
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5974806..988ecee 100644
--- a/README.md
+++ b/README.md
@@ -28,6 +28,30 @@ For Windows:
iwr -useb https://raw.githubusercontent.com/catilgrass/run/refs/heads/master/install/install.ps1 | iex
```
+## Or manually install
+
+For Linux:
+
+```bash
+cd your-project
+git clone https://github.com/catilgrass/run
+mv run/.run run/run.ps1 run/run.sh ./
+rm -rf run
+```
+
+For Windows:
+
+```powershell
+cd your-project
+git clone https://github.com/catilgrass/run
+
+Move-Item -Path "run/.run" -Destination "./.run" -Force
+Move-Item -Path "run/run.ps1" -Destination "./run.ps1" -Force
+Move-Item -Path "run/run.sh" -Destination "./run.sh" -Force
+
+Remove-Item -Path "run" -Recurse -Force
+```
+
## Usage
```bash