Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 909 Bytes

installation.md

File metadata and controls

55 lines (36 loc) · 909 Bytes

Installation

Using a standalone script

On Windows

iwr https://github.com/devjiwonchoi/po2mo/raw/main/scripts/install.ps1 -useb | iex

On POSIX systems

curl -fsSL https://github.com/devjiwonchoi/po2mo/raw/main/scripts/install.sh | sh -

If you don't have curl installed, you would like to use wget:

wget -qO- https://github.com/devjiwonchoi/po2mo/raw/main/scripts/install.sh | sh -

Installing a specific version

Prior to running the install script, you may optionally set an env variable PO2MO_VERSION to install a specific version of po2mo:

curl -fsSL https://github.com/devjiwonchoi/po2mo/raw/main/scripts/install.sh | env PO2MO_VERSION=<version> sh -

Using Node.js Package Managers

npx

npx po2mo@latest

npm

npm i -g po2mo

yarn

yarn global add po2mo

pnpm

pnpm i -g po2mo