Skip to content

Commit

Permalink
doc: add more installation methods (#1300)
Browse files Browse the repository at this point in the history
Signed-off-by: Keming <kemingyang@tensorchord.ai>

Signed-off-by: Keming <kemingyang@tensorchord.ai>
  • Loading branch information
kemingy committed Dec 13, 2022
1 parent d0a803e commit 0a416d1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,17 @@ For example, the PyPI cache is shared across builds and thus the package will be

### Install and bootstrap `envd`

`envd` can be installed with `pip` (only support Python3). After the installation, please run `envd bootstrap` to bootstrap.
`envd` can be installed with `pip`, or you can download the binary [release](https://github.com/tensorchord/envd/releases) directly. After the installation, please run `envd bootstrap` to bootstrap.

```bash
pip3 install --pre --upgrade envd
# install with local pip
pip install --pre --upgrade envd
# or install with pipx
pipx install envd --pip-args="--pre"
# or download the latest release artifact with GitHub CLI
bash -c "gh release download -R tensorchord/envd -p $(echo envd_\*_$(uname)_$(uname -p))"

# bootstrap
envd bootstrap
```

Expand Down

0 comments on commit 0a416d1

Please sign in to comment.