Download Quail
Here you can get QRE and QDK downloads and see tutorial on how to install it
Installer for Windows Installer for LinuxManual installation
Install Java 8
Download Quail
Install downloaded package
Additional downloads
Download syntax highlighting for Sublime TextHow to install?
Manual installation on Windows
- Make sure you have at least Java 8 installed
- Download your chosen Quail version
- Place
qre.jarand/orqdk.jarinto some folder on your computer - Create an environment variable called
QUAIL_HOMEand set it to that folder - Place the following contents into file at
C:\Windows\quail.bat@echo off if exist "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" ( "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" -jar "%QUAIL_HOME%\qre.jar" %* ) if not exist "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" ( java -jar "%QUAIL_HOME%\qre.jar" %* ) - Place the following contents into file at
C:\Windows\quail-qdk.bat@echo off if exist "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" ( "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" -jar "%QUAIL_HOME%\qdk.jar" %* ) if not exist "%QUAIL_HOME%\jre\jdk1.8.0_402\bin\java.exe" ( java -jar "%QUAIL_HOME%\qdk.jar" %* )
- Now you can access Quail with
quailandquail-qdkcommands
Manual installation on Linux
- Make sure you have at least Java 8 installed
- Download your chosen Quail version
- Place
qre.jarand/orqdk.jarinto/bin/quail-jars/ - Place the following contents into file at
/bin/quail#!/bin/bash java -jar /bin/quail-jars/qre.jar $@
- Place the following contents into file at
/bin/quail-qdk#!/bin/bash java -jar /bin/quail-jars/qdk.jar $@
- Run
sudo chmod +x /bin/quail sudo chmod +x /bin/quail-qdk
- Now you can access Quail with
quailandquail-qdkcommands