Operating System
- Windows 10 (64-bit) or later
- Windows 11 (recommended)
This guide will walk you through the process of installing the Quetzal Language interpreter on Windows.
Windows OnlyOperating System
Minimum Hardware
Download the executable
Go to the GitHub releases page and download the latest version:
quetzal.exe in the Assets section of the latest release.Create installation directory
Create a folder for Quetzal on your system. We recommend:
C:\quetzal\Move the downloaded quetzal.exe file to this folder.
Configure environment variables
To run Quetzal from any location:
Win + R, type sysdm.cpl and press EnterPath variable and click “Edit”C:\quetzalVerify the installation
Open a new Command Prompt or PowerShell window and run:
quetzal --versionYou should see something like:
Lenguaje Quetzal v0.0.2quetzal my_program.qzquetzal --ayudaCreate a file named test.qz with the following content:
// Test file to verify installationconsola.mostrar_exito("Quetzal Language installed successfully!")
entero edad = 25texto nombre = "Maria"
consola.mostrar("Hola " + nombre + ", tienes " + edad.texto() + " anos")
si (edad >= 18) { consola.mostrar("Eres mayor de edad")} sino { consola.mostrar("Eres menor de edad")}Run the file:
quetzal test.qzIf you see the correct output, the installation was successful!
Command not recognized
Error: 'quetzal' is not recognized as an internal or external command
Solution:
C:\quetzal\quetzal.exePermission error
Error: Cannot execute the file
Solution:
Antivirus blocks the file
Error: Antivirus detects the file as a threat
Solution:
C:\quetzal\ to your antivirus exceptions# Verify the file existsdir C:\quetzal\quetzal.exe
# Check environment variablesecho %PATH%
# Run with detailed informationquetzal --infoTo update to a new version:
quetzal.exe from GitHub ReleasesC:\quetzal\quetzal --versionTo remove Quetzal from your system:
C:\quetzal\ folderC:\quetzal from the PATH environment variable.qz files you createdGreat! You now have Quetzal Language ready to use. Continue with:
Your first program
Learn to create and run your first complete program in Quetzal.
Basic syntax
Get familiar with the syntax and structure of the language.
Practical examples
Explore code examples for different use cases.
Having trouble with installation? Report an issue on our GitHub repository.