Categories
Go

GoLang Evrensel Yükleyicisi

GoLang’in resmi evrensel yükleyicisi olmamasına karşın topluluğun pek de bilinmeyen bir evrensel yükleyicisi bulunmaktadır.

MacOS/Linux gibi UNIX temelli işletim sistemleri için;

curl -LO https://get.golang.org/$(uname)/go_installer && chmod +x go_installer && ./go_installer && rm go_installer

Windows Powershell/cmd.exe ;

(New-Object System.Net.WebClient).DownloadFile('https://get.golang.org/installer.exe', 'installer.exe'); Start-Process -Wait -NonewWindow installer.exe; Remove-Item installer.exe

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.