From 83c86428f3d40888c303acd743b5864164d5d751 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Fri, 26 Feb 2021 17:54:01 +0000 Subject: [PATCH 1/2] Update install instructions --- docs/1 Introduction/2 Install.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/1 Introduction/2 Install.md b/docs/1 Introduction/2 Install.md index 62994add70..9fe90a20a8 100644 --- a/docs/1 Introduction/2 Install.md +++ b/docs/1 Introduction/2 Install.md @@ -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/` 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 ``` From f9e931abd36327eb62af5cdc86b77604496f35a0 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Fri, 26 Feb 2021 17:55:01 +0000 Subject: [PATCH 2/2] Update docs/1 Introduction/2 Install.md --- docs/1 Introduction/2 Install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1 Introduction/2 Install.md b/docs/1 Introduction/2 Install.md index 9fe90a20a8..c0af05218e 100644 --- a/docs/1 Introduction/2 Install.md +++ b/docs/1 Introduction/2 Install.md @@ -10,7 +10,7 @@ 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/` not being writable by the user, then execute the following command: +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