Skip to content

Commit

Permalink
Create himitsu_install.sh
Browse files Browse the repository at this point in the history
Created an install script
  • Loading branch information
mondainai247 authored Jan 26, 2024
1 parent 4d2a876 commit eb201df
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions himitsu_install.sh
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

0 comments on commit eb201df

Please sign in to comment.