Create a Hello World Yanga Project#


Option 2: Windows (Native)#

On Windows, install Yanga with pipx and create a new project:

pipx install yanga
yanga init --project-dir C:\temp\hello_yanga
cd C:\temp\hello_yanga
yanga run

Note

The yanga run command will bootstrap the build environment and build the project.


Option 3: macOS / Linux (Native)#

If you already have build tools installed (CMake, GCC or Clang), follow the same steps:

pipx install yanga
yanga init --project-dir ~/hello_yanga
cd ~/hello_yanga
yanga run

Tip

Use yanga --help for a list of all available commands.