Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. It is simple, fast, safe, parallel, interesting, open source, memory managed, v-array safe, and quick to compile. Go is designed as a systems programming language for giant central servers such as web servers, storage clusters, or similar purposes. When it comes to high-performance distributed systems, Go undoubtedly has higher development efficiency than most other languages. It provides massive parallel support, which is perfect for game server development. This article introduces how to install golang under Linux. The specific contents are as follows: 1. Download the golang source code installation package wget https://dl.google.com/go/go1.12.1.linux-amd64.tar.gz 2. Unzip the file tar -zxvf go1.12.1.linux-amd64.tar.gz -C /usr/local/bin/ 3. Configure environment variables echo "export GOROOT=/usr/local/bin/go/" >> ~/.bashrc echo "export PATH=$GOROOT/bin:$PATH" >> ~/.bashrc echo "export GOPATH=$HOME/work/go" >> ~/.bashrc echo "export PATH=$PATH:$GOPATH/bin" >> ~/.bashrc source ~/.bashrc Test whether the installation is successful [root@iZ2ze40depfadmv9xdxdsxZ src]# go version go version go1.12.1 linux/amd64 Summarize The above is the method of installing golang under Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: js to realize automatic lock screen function
>>: Solution to the problem of crash when opening the command line window after installing MySQL 5.7
Summary: In order to make your web page look more...
Since I started working on Vulhub in 2017, I have...
Table of contents 【Code background】 【Code Impleme...
Use runlike to view the docker run startup parame...
Create a table CREATE TABLE `map` ( `id` int(11) ...
Table of contents Block-level functions Directly ...
Recently, I have used React Hooks in combination ...
Preface Previously, static IPs assigned using pip...
This article is mysql database Question 1 Import ...
A new window opens. Advantages: When the user cli...
Table of contents 1. Install Node Exporter 2. Ins...
In react, if you modify the state directly using ...
In the previous blog, we learned about the usage ...
In actual development, the primary key of MySQL c...
Vue router transitions are a quick and easy way t...