इस ट्यूटोरियल में, हम डेबियन 12 पर गो का नवीनतम संस्करण स्थापित करेंगे और इसका परीक्षण करने के लिए एक परीक्षण एप्लिकेशन चलाएंगे।
1. आइए सभी पैकेजों को अपडेट करें
apt update
apt upgrade
2. गो का नवीनतम संस्करण डाउनलोड करें
आइए नवीनतम वितरण के लिंक को यहां जाकर कॉपी करें https://go.dev/dl/.
2.1 संग्रह को डाउनलोड करें और अनपैक करें
wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz
2.2 आइए प्रोफ़ाइल फ़ाइल में एक वेरिएबल जोड़ें
echo "export PATH=/usr/local/go/bin:${PATH}" | sudo tee -a $HOME/.profile
source $HOME/.profile
2.3 आइए संस्करण की जाँच करें
go version
go1.21.5 linux/amd64
3. आइए एक परीक्षण एप्लिकेशन बनाएं
mkdir go-hello
nano go-hello/hello.go
package main
import "fmt"
func main() { fmt.Printf("Hello, World\n") }
nano go-hello/go.mod
module example.com/mod
3.1 आइए अपना कार्यक्रम संकलित करें
cd go-hello
go build
./mod
Hello, World!
तैयार।
No Comments Yet