Get your Pi set up - Guzunty/Pi GitHub Wiki
This looks like a lot, but it doesn't take long. Please note that these directions are for Raspbian, the most commonly used operating system on the Raspberry Pi, but with some slight modifications you should be able to get Guzunty running on other distributions. For Arch Linux for example, there are several differences in the commands to use, please see issue #23.
Install needed packages
sudo apt-get install gitsudo apt-get install libncurses5-dev libncursesw5-dev(for building and running the core test/demo executables)sudo apt-get install geany(optional, code editor for tinkering)sudo apt-get install doxygen(optional, for nice library documentation. Warning: requires just under a GB of storage)sudo apt-get install arduino(optional, if you want to run the arduino i/f core)sudo apt-get install openjdk-7-jdk(optional, for working on the experimental Logic Analyser project)
Download and install the bcm2835 library
Download the bcm2835 library from http://www.open.com.au/mikem/bcm2835/bcm2835-1.17.tar.gz
gunzip bcm2835-1.17.tar.gztar -xvf bcm2835-1.17.tar.gzcd bcm2835-1.17./configuremakesudo make checksudo make install
Get the Guzunty Pi example code and cores
Make a folder for your Guzunty projects and change to it. You can put this folder anywhere you like, but the root of your home directory or a Projects folder would be a good candidate.
mkdir Guzuntycd Guzuntygit clone https://github.com/Guzunty/Pi.git
Make and install the Guzunty loader
cd Pi/src/gz_loadmakesudo chmod a+x gz_loadsudo cp gz_load /usr/bin
Make and install the Guzunty library (gzlib)
cd ../gzlib/srcmakesudo make install
Enable SPI (optional, but needed for almost all cores)
Edit (as root) /etc/modprobe.d/raspi-blacklist.conf Insert # in front of the line: blacklist spi-bcm2708 Save and reboot
syncsyncsudo shutdown -r now
Set up Python support (optional, for Python users)
Install the Python developers library and build and install the Python GZ module
sudo apt-get install python-devcd Guzunty/Pi/src/gzlib/srcsudo python setup.py install