Installing Fandango#
Installing Fandango for Normal Usage#
Fandango comes as a Python package. To install Fandango, run the following command:
$ pip install fandango-fuzzer
To test if everything worked well, try
$ fandango --help
which should give you a list of options:
usage: fandango [-h] [--version] [--verbose | --quiet]
{fuzz,parse,shell,help,copyright,version} ...
The access point to the Fandango framework
options:
-h, --help show this help message and exit
--version show version number
--verbose, -v increase verbosity. Can be given multiple times (-vv)
--quiet, -q decrease verbosity. Can be given multiple times (-qq)
commands:
{fuzz,parse,shell,help,copyright,version}
the command to execute
fuzz produce outputs from .fan files and test programs
parse parse input file(s) according to .fan spec
shell run an interactive shell (default)
help show this help and exit
copyright show copyright
version show version
Use `fandango help` to get a list of commands.
Use `fandango help COMMAND` to learn more about COMMAND.
See https://fandango-fuzzer.github.io/ for more information.
Installing Fandango for Development#
Caution
This will get you the very latest version of Fandango, which may be unstable. Use at your own risk.
Clone the Fandango repository:
$ git clone https://github.com/fandango-fuzzer/fandango/
Switch to the top-level fandango/
folder:
$ cd fandango
Run
$ pip install -e .
You should then be able to invoke Fandango as described above.