# light node on ethOS ```bash pkg update && pkg upgrade ``` ```bash pkg install curl tar wget clang jq git make ncdu ``` ```bash ver="1.20.2" cd $HOME wget "https://golang.org/dl/go$ver.linux-arm64.tar.gz" tar -xvf "go$ver.linux-arm64.tar.gz" rm "go$ver.linux-arm64.tar.gz" ``` ```bash echo "export PATH=$PATH:$HOME/go/bin" >> $HOME/.bash_profile source $HOME/.bash_profile ``` ```bash git clone https://github.com/celestiaorg/celestia-node.git cd celestia-node/ git checkout tags/v0.10.0 make build make install make cel-key ``` That's it ✌️