Search documentation...

Installation

Learn how to install Velt on your system.

Prerequisites

Before installing Velt, make sure you have the following:

Installing V

If you don't have V installed, follow these steps:

# Clone V compiler
git clone https://github.com/vlang/v
cd v

# Bootstrap V (Linux/macOS)
make

# Or on Windows
make.bat

Add V to your PATH for easy access.

Installing Velt

Clone and build Velt:

git clone https://github.com/vlang/velt
cd velt
v -o velt src/

Done! You now have a velt executable ready to use.

Verify Installation

./velt --help

You should see the available commands listed.

Next Steps