Skip to content

Install

amiika edited this page Nov 3, 2019 · 1 revision

How to install

Requirements

Install Sonic Pi and Git.

Installation

Go to your home directory ("~" or "C:\Users\user_name") and clone Ziffers using:

git clone https://github.com/amiika/ziffers.git

Require Ziffers in Sonic Pi init file in users home diretory, found in: "~/.sonic-pi/init.rb":

require "~/ziffers/ziffers.rb"

This will load ziffers once the Sonic Pi starts. The "~" character references ziffers under users home folder. Note that ~ works also in Windows.

Alternatively you can require or load Ziffers in Sonic Pi's buffer, for example:

load "~/ziffers/ziffers.rb"

This will reload ziffers every time the buffer is loaded (useful if you want to make changes to the Ziffers code).

Staying up to date

Stay up to date as the Ziffers is an ongoing project. Post Issues to report bugs or to ask questions.

To update go to ziffers folder, for example: "~/ziffers" or "C:\Users\user_name\ziffers" and run:

git pull

This will load the latest changes to the Ziffers project.

Clone this wiki locally