How to install Go on Termux

PHPz
Release: 2023-04-05 09:30:18
Original
1572 people have browsed it

Termux is by far the best "terminal emulator and Linux environment" when it comes to working on mobile devices. On the other hand, Go is a compiled high-level programming language known for its advantages such as fast compilation and low energy consumption. If you want to run, compile, and debug Go code on your phone, you need Termux and Go, and this article will explain how to install Go on Termux.

Step One: Install Termux

In the Google Play Store, you can search for Termux and click "Install".

Step 2: Update the operating system

Open the Termux terminal and type the following command to update the operating system:

pkg upddate && pkg upgrade
Copy after login

Step 3: Install Git

Type The following command:

pkg install git
Copy after login

Step 4: Install Go

Clone the Go code through git clone: ​​

git clone https://github.com/golang/go.git
Copy after login

To prepare the Go code, you need to install the gcc and g compilers , type the following command:

pkg install clang libcrypt-dev libgcrypt-dev
Copy after login

Then, type the following command to enter the Go main folder:

cd go/src
Copy after login

Now you can generate the configuration file:

./all.bash
Copy after login

If everything goes well, Congratulations! You have successfully installed Golang on Termux.

Step 5: Run Go

Type the following command to run some simple Go code:

go version
Copy after login

The above is the whole process of installing Go on Termux, if you encounter If you have any questions, you can ask for help in the community. I hope this article can help people in need.

The above is the detailed content of How to install Go on Termux. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!