An open API service indexing awesome lists of open source software.

https://github.com/osspkg/gvm

Golang Virtual Manager
https://github.com/osspkg/gvm

go golang virtual-manager

Last synced: about 1 year ago
JSON representation

Golang Virtual Manager

Awesome Lists containing this project

README

          

# gvm
Golang Virtual Manager

### Install & Update Script

To **install** or **update** gvm, you should run the installation script. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
```shell
curl -o- https://raw.githubusercontent.com/osspkg/gvm/master/install.sh | bash
```

### Use:

```shell
gvm install # only install version
gvm default # set global version and install
gvm local # set local version, generate `.gvmrc` and install
gvm update # install last GVM version
```

### Use file `.gvmrc`
To configure the Go version for the current project, specify the desired version in the file. Example:

```text
1.22.0
```