-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/bash | ||
sudo apt update -y | ||
sudo apt install build-essential -y | ||
sudo apt install gcc -y | ||
sudo apt install wget -y | ||
sudo apt install curl -y | ||
|
||
#On Linux | ||
sudo wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz | ||
|
||
#unpack it | ||
sudo tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz | ||
|
||
|
||
export GOROOT=/usr/local/go | ||
export PATH=$PATH:$GOROOT/bin | ||
export PATH=$PATH:~/go/bin | ||
|
||
source ~/.bashrc | ||
go env | ||
#should output golang 1.19 | ||
|
||
curl https://get.ignite.com/[email protected] | bash | ||
|
||
curl https://get.ignite.com/cli | bash | ||
|
||
sudo mv ignite /usr/local/bin | ||
ignite version | ||
echo “Welome to Himitsu” | ||
|
||
|
||
|
||
git clone https://github.com/mondainai247/himitsu.git | ||
|
||
cd himitsu | ||
make install | ||
|
||
himitsud --vesion |