Skip to content
Merged
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
12 changes: 12 additions & 0 deletions docs/1 Introduction/2 Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ curl https://get.starport.network/starport! | bash

This command will download the latest `starport` binary from Github and install it into `/usr/local/bin`. To learn more about how to install previous versions of the binary, refer to the [documentation](https://github.com/allinbits/starport-installer).

If the installer fails due to `/usr/local/bin/` not being writable by the user, then execute the following command:

```
curl https://get.starport.network/starport | bash
```

Finally, move the `starport` executable to `/usr/local/bin/` manually:

```
sudo mv starport /usr/local/bin/
```

## macOS with Homebrew

```
Expand Down