Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,22 @@ The durable system contract lives in

## Install

This package is not published to the npm registry. Install it from a checkout:

```sh
npm install -g @compoundingtech/pty
git clone https://github.com/compoundingtech/pty.git
cd pty
npm ci
npm run build
npm install --global --prefix "$HOME/.local" .
export PATH="$HOME/.local/bin:$PATH"
pty --version
```

The install links to the checkout, so keep the checkout at that path. Put
`$HOME/.local/bin` before other bin directories that can contain a different
command named `pty`.

Or install with Nix — see [nix.md](nix.md).

Requires Node.js. Works on macOS and Linux.
Expand Down
Loading