HeadlinesBriefing favicon HeadlinesBriefing.com

How to Install Go Beta Versions

DEV Community •
×

Developers eager to test Go 1.13rc1 can now sidestep the traditional installation headaches. A new method allows you to download and run the latest Go binary without touching your primary development setup. This approach uses a simple command to fetch the executable, keeping your stable environment clean while you experiment with new language features.

The process starts with a standard `go get` command targeting the `golang.org/dl` repository. After fetching the file, you simply run the download command to retrieve the full executable. The compiler installs neatly into a dedicated version control directory, isolating it completely from your main Go installation and preventing any conflicts with existing projects.

This technique isn't just for beta testing; it’s a powerful tool for any serious developer. You can quickly spin up multiple Go versions side-by-side for regression testing or running performance benchmarks. By managing compilers this way, you ensure your code remains compatible across releases without the tedious process of uninstalling and reinstalling tools.