-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
35 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Install Prebuilt Binaries | ||
Install prebuilt: | ||
```sh | ||
# macOS and Linux (and WSL) | ||
curl -fsSL https://github.com/xhd2015/xgo/raw/master/install.sh | bash | ||
|
||
# Windows | ||
powershell -c "irm github.com/xhd2015/xgo/raw/master/install.ps1|iex" | ||
``` | ||
|
||
# Upgrade if you've already installed | ||
If you've already installed `xgo`, you can upgrade it with: | ||
|
||
```sh | ||
xgo upgrade | ||
``` | ||
|
||
# Build from source | ||
If you want to build from source, run with: | ||
|
||
```sh | ||
git clone https://github.com/xhd2015/xgo | ||
cd xgo | ||
go run ./script/build-release --local | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters