gobrew alternatives and similar packages
Based on the "DevOps Tools" category.
Alternatively, view gobrew alternatives based on common mentions on social networks and blogs.
-
Gitea
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD -
Moby
The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems -
Packer
Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. -
kubeshark
The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes -
Ddosify
Anteon (formerly Ddosify) - Effortless Kubernetes Monitoring and Performance Testing. Available on CLI, Self-Hosted, and Cloud -
dasel
Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single tool. Supports conversion between formats and can be used as a Go package. -
Mizu
DISCONTINUED. The API traffic viewer for Kubernetes providing deep visibility into all API traffic and payloads going in, out and across containers and pods inside a Kubernetes cluster. Think TCPDump and Wireshark re-invented for Kubernetes [Moved to: https://github.com/kubeshark/kubeshark] -
Pomerium
Pomerium is an identity and context-aware reverse proxy for zero-trust access to web applications and services. -
Fleet device management
Open-source platform for IT, security, and infrastructure teams. (Linux, macOS, Chrome, Windows, cloud, data center) -
StatusOK
Monitor your Website and APIs from your Computer. Get Notified through Slack, E-mail when your server is down or response time is more than expected. -
s3gof3r
Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI. http://godoc.org/github.com/rlmcpherson/s3gof3r -
uTask
µTask is an automation engine that models and executes business processes declared in yaml. ✏️📋
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of gobrew or a related project?
Popular Comparisons
README
gobrew
gobrew lets you easily switch between multiple versions of go. It is based on rbenv and pyenv.
Installation
The automatic installer
You can install this via the command line with either curl
or wget
.
via curl
curl -L https://raw.github.com/grobins2/gobrew/master/tools/install.sh | sh
via wget
wget --no-check-certificate https://raw.github.com/grobins2/gobrew/master/tools/install.sh -O - | sh
The manual way
Check out gobrew where you want it installed.
$ git clone git://github.com/cryptojuice/gobrew.git ~/.gobrew
Add the following to your shell config.
export PATH="$HOME/.gobrew/bin:$PATH" eval "$(gobrew init -)"
Note:
- BASH: Add this to ~/.bashrc (~/.bash_profile for Ubuntu users).
* ZSH: Add this to ~/.zshenv
- Source your shell config file (or reopen shell session).
Commands
: gobrew install
Install a specified version of Go.
$ gobrew install 1.5
: gobrew uninstall
$ gobrew uninstall 1.5
: gobrew use
Sets which version of Go to use globally.
$ gobrew use 1.5
: gobrew workspace
Note: 'gobrew workspace' echos the currently set workspace ($GOPATH). Use 'gobrew workspace set' to set your $GOPATH to the current working directory. Use 'gobrew workspace unset' to remove this setting.
$ cd /path/to/workspace
$ gobrew workspace set
$ gobrew workspace unset
Visit http://golang.org/doc/code.html#Workspaces for more on workspaces.
Useful
Updates
To upgrade run update script from .gobrew source with: $ cd ~ $ ./.gobrew/tools/upgrade.sh
Uninstalling
If you want to uninstall it, just run
$ cd ~
$ ./.gobrew/tools/uninstall.sh
from the command line and it’ll remove itself.