文件
ParlzPackageManger/web/docs/md/install.md
T
JGZYES 07a91c2687 web: install.md — move the 'add pmm.exe to PATH' note out of the code block
It was inside the PowerShell code fence, so the Chinese line (with a backslash in
pmm\pmm.exe) rendered as code text. Move it outside as a quoted note (
2026-09-05 13:08:31 +08:00

951 B
原始文件 Blame 文件历史

安装

所有安装包在官网 download/ 目录。

Linux / macOS 一键

curl -sSL https://pmm.parlz.com/download/install.sh | bash

Windows

下载并解压 zip,将 pmm.exe 加入 PATH

# PowerShell
Invoke-WebRequest https://pmm.parlz.com/download/pmm-0.3.6-windows-amd64.zip -OutFile pmm.zip
Expand-Archive pmm.zip -DestinationPath pmm

然后将 pmm\pmm.exe 所在目录加入 PATH。

Debian / Ubuntu.deb

curl -L -o pmm.deb https://pmm.parlz.com/download/pmm_0.3.6_amd64.deb
sudo apt install ./pmm.deb

CentOS / RHEL.rpm

curl -L -o pmm.rpm https://pmm.parlz.com/download/pmm-0.3.6.x86_64.rpm
sudo rpm -Uvh pmm.rpm

用 pmm 安装 pmm 自身

pmm install pmm==0.3.6

装好后

pmm search nodejs
pmm install nodejs
pmm list
pmm remove nodejs

详见 命令参考下载