nicewook / gvm

Go version manager for Windows
Apache License 2.0
15 stars 2 forks source link

GVM: Go Version Manager for Windows

GitHub repo size GitHub contributors GitHub stars GitHub forks

Project name is a gvm that allows Go developers who are using Windows to use multiple go version easily. There is already gvm(https://github.com/moovweb/gvm) for Linux and MacOS, but I couldn't find well working gvm for Windows OS, so the project started.

Installing gvm

To install gvm on Windows, follow these steps:

$ go get -u github.com/nicewook/gvm

Features

Using gvm commands

version

version command shows the gvm version.

$ gvm version 

gvm version command

list

list command shows the installed go SDK(s), and system means originally installed go.

$ gvm list 

gvm list command

listall

listall command shows the installed go SDK(s), and system means originally installed go.

$ gvm listall 

gvm listall command

install

install command installs go SDK(s)

$ gvm install 1.14.1 1.14.2

gvm install command

uninstall

uninstall command uninstalls go SDK(s).

$ gvm uninstall 1.13.1 1.13.2

gvm uninstall command

use

use command changes using go SDK versions to desired.

$ gvm use

$ gvm use system

$ gvm use 1.15.6

gvm use command

Contact

If you want to contact me you can reach me at nicewook@hotmail.com

License

This project uses the following license: .

Reference