gvm icon indicating copy to clipboard operation
gvm copied to clipboard

Go Version Manager

Results 158 gvm issues
Sort by recently updated
recently updated
newest added

After installing gvm, when I tried to use it, I got an error about needing Bison: $ gvm install go1.17 gvm use go1.17 [--default] Could not find bison linux: apt-get...

Sometimes I need to run Go command line tools from a privileged environment. However, gvm is trickier to use with `sudo`. The best I've found so far is: ```sh $...

Installing go from scratch does not work for Big Sur as 1.4 does not have a binary for this OS (this command fails - `gvm install go1.4 -B`). To use...

Receiving the following error when attempting to install: ```Cloning from https://github.com/moovweb/gvm.git to /home/hansw013/.gvm Created profile for existing install of Go at /c/go ': not a valid identifierts/gvm-default: line 1: unset:...

No go installed I wanted to start clean: My prerequisite installation step: install go version manager: `bash < prec) { | ^ /home/nkostic/.gvm/gos/go1.4/src/lib9/fmt/fltfmt.c:451:2: note: here 451 | default: | ^~~~~~~...

If anyone wants to run `gvm` on a Macbook M1 chip device OR macOS after Catalina, You can try this: ```bash curl -sSL https://github.com/soulteary/gvm/raw/master/binscripts/gvm-installer | bash ```

Go modules folder is protected. So you need to clean the mod cache first when the mod cache data exists. This added a message to solve that situation. Related to...

Is there a way to just install whatever is the latest stable version of Go? For example, NVM (Node Version Manager) has `nvm install node` to install the latest version...

In looking at https://github.com/moovweb/gvm/blob/master/scripts/install I noticed that `download_binary()` downloads the go tarball via [curl](https://github.com/moovweb/gvm/blob/master/scripts/install#L197) and then proceeds to [untar](https://github.com/moovweb/gvm/blob/master/scripts/install#L207) the binary without verifying it, which is susceptible to a supply...