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
- Host: GitHub
- URL: https://github.com/osspkg/gvm
- Owner: osspkg
- License: mit
- Created: 2024-02-25T12:46:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-25T20:09:22.000Z (about 2 years ago)
- Last Synced: 2025-02-14T15:17:01.459Z (about 1 year ago)
- Topics: go, golang, virtual-manager
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```