Operating system
- Windows 10 (64-bit) or later
- Windows 11 (recommended)
This guide walks you through installing the Quetzal Language interpreter on Windows.
Windows onlyOperating system
Minimum hardware
Download the executable
Visit the GitHub releases page and download the latest version:
quetzal.exe in the Assets section of the most recent release.Create an installation directory
Create a folder for Quetzal on your system. We recommend:
C:\\quetzal\\Move the downloaded quetzal.exe file into this folder.
Configure environment variables
To run Quetzal from any location:
Win + R, type sysdm.cpl, and press EnterPath 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 mi_programa.qzquetzal --ayudaCreate a file named prueba.qz with the following content:
consola.mostrar_exito("¡Lenguaje Quetzal instalado correctamente!")
entero edad = 25texto nombre = "María"
consola.mostrar("Hola " + nombre + ", tienes " + edad.texto() + " años")
si (edad >= 18) { consola.mostrar("Eres mayor de edad")} sino { consola.mostrar("Eres menor de edad")}Run the file:
quetzal prueba.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 run the file
Solution:
Antivirus blocks the file
Error: The antivirus flags the file as a threat
Solution:
C:\\quetzal\\ to your antivirus exceptions# Make sure the file existsdir C:\\quetzal\\quetzal.exe
# Check environment variablesecho %PATH%
# Run with detailed informationquetzal --infoTo upgrade 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! Quetzal Language is ready to use. Continue with:
Your first program
Learn how to build and run your first complete Quetzal program.
Basic syntax
Get familiar with the language syntax and structure.
Practical examples
Explore sample code for different use cases.
Any trouble with the installation? Open an issue in our GitHub repository.