# Install SDK
NOTE: Ensure you meet the prerequisites before installing the Go Waves SDK.
# Prerequsites
- Go: Version 1.23 or above.
# Tutorial
Install the SDK by following the steps:
- Create and go to the project directory:
mkdir gowaves && cd gowaves
- Initialize the module in the project:
go mod init waves go get github.com/wavesplatform/gowaves@master
- Create the project file:
touch waves.go
- Paste the code block into the
waves.go
file:package main import ( "fmt" ) func main() { fmt.Println("Ride the Waves!") }