文件
ParlzPackageManger/web/docs/md/install.md
T
JGZYES eec6113d38 web: docs reads all .md from docs/md/ dynamically (no hardcoded map)
docs/index.php now scans docs/md/*.md, uses each file's first '# heading' (or the
filename) as the tree label, and renders the selected page on the right. The
hardcoded group/page map is gone; adding/removing an .md under md/ updates the
left file tree automatically. .md sources moved into docs/md/.
2026-09-05 12:02:59 +08:00

50 行
1007 B
Markdown
原始文件 Blame 文件历史

此文件含有模棱两可的 Unicode 字符
此文件含有可能会与其他字符混淆的 Unicode 字符。 如果您是想特意这样的,可以安全地忽略该警告。 使用 Escape 按钮显示他们。
# 安装
## Linux / macOS 一键
```bash
curl -sSL https://pmm.parlz.com/install.sh | bash
```
## Windows
下载并解压 zip,将 `pmm.exe` 加入 PATH
```bash
# PowerShell
Invoke-WebRequest https://github.com/JGZYES/ParlzPackageManger/releases/latest/download/pmm-0.3.6-windows-amd64.zip -OutFile pmm.zip
Expand-Archive pmm.zip -DestinationPath pmm
# 然后将 pmm\pmm.exe 所在目录加入 PATH
```
## Debian / Ubuntu.deb
```bash
curl -L -o pmm.deb https://github.com/JGZYES/ParlzPackageManger/releases/latest/download/pmm_0.3.6_amd64.deb
sudo apt install ./pmm.deb
```
## CentOS / RHEL.rpm
```bash
curl -L -o pmm.rpm https://github.com/JGZYES/ParlzPackageManger/releases/latest/download/pmm-0.3.6-1.x86_64.rpm
sudo rpm -Uvh pmm.rpm
```
## 用 pmm 安装 pmm 自身
```bash
pmm install pmm==0.3.6
```
## 装好后
```bash
pmm search nodejs
pmm install nodejs
pmm list
pmm remove nodejs
```
详见 [命令参考](index.php?page=cli) 与 [下载](index.php?page=download)。