Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankit Charolia committed Aug 24, 2023
1 parent f9a8cf2 commit 61d652e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@
goenv is a command-line tool to manage multiple versions of Golang on your system.

## Installation
**Download**: https://github.com/ankitcharolia/goenv/releases
**Releases**: https://github.com/ankitcharolia/goenv/releases

**LINUX**
```shell
wget -O - https://github.com/ankitcharolia/goenv/releases/latest/download/goenv-linux-amd64.tar.gz | tar -xz -C ~/.go
export PATH=$HOME/.go:$PATH >> ~/.bashrc
source ~/.bashrc
```

**MAC**
```shell
wget -O - https://github.com/ankitcharolia/goenv/releases/latest/download/goenv-darwin-amd64.tar.gz | tar -xz -C ~/.go
export PATH=$HOME/.go:$PATH >> ~/.zshrc
source ~/.zshrc
```

## Usage
goenv provides several commands to manage Golang versions on your system.
```shell
Expand Down

0 comments on commit 61d652e

Please sign in to comment.