Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 1.73 KB

initial-setup.md

File metadata and controls

67 lines (42 loc) · 1.73 KB

Initial Setup

Step 1. Install Git

To install Git, click on this link to download the installer, or run the following script on your CLI:

sudo apt update; sudo apt install git-all -y;

Step 2. Install Go

To install Go, click on this link to download the installer, or run the following script on your CLI:

wget -q -O - https://git.io/vQhTU | bash -s - --version 1.19

Step 3. Clone the gno Repository

Clone the official gno Repository using the following command:

git clone https://github.com/gnolang/gno

Step 4. Build gnokey and gno

cd ~/gno && make install

Step 4.1 Build gnoland

cd ~/gno/gno.land && make install.gnoland
cd ~/gno/gno.land && make install.gnoweb
cd ~/gno/gno.land && make install.gnofaucet

Step 4.2 Build tm2

cd ~/gno/tm2 && make install