Skip to main content

Abjad is a Python API for Formalized Score Control.

Project description

Abjad helps composers build up complex pieces of music notation in an iterative and incremental way. Use Abjad to create symbolic representations of all the notes, rests, staves, tuplets, beams and slurs in any score. Because Abjad extends the Python programming language, you can use Abjad to make systematic changes to your music as you work. And because Abjad wraps the powerful LilyPond music notation package, you can use Abjad to control the typographic details of the symbols on the page.

GitHub | PyPI | Documentation | Mailing list | Issue Tracker | Travis-CI

https://img.shields.io/travis/Abjad/abjad/master.svg?style=flat-square https://img.shields.io/coveralls/Abjad/abjad/master.svg?style=flat-square https://img.shields.io/pypi/v/abjad.svg?style=flat-square https://img.shields.io/pypi/dm/abjad.svg?style=flat-square

Installation

Abjad works on Unix/Linux, OSX, and Windows.

Abjad also works with CPython versions 2.7 and 3.3+, as well as PyPy.

Install Abjad

To install Abjad from PyPI, the Python Package Index, via pip:

~$ sudo pip install abjad

To install the cutting-edge version Abjad from its GitHub repository, via git and pip:

~$ git clone https://github.com/Abjad/abjad.git
~$ cd abjad
abjad$ sudo pip install .

Install LilyPond

Abjad uses LilyPond, an open-source automated engraving engine, to produce notational output.

Abjad targets whichever is the most recent version of LilyPond. At the time of this writing, that means 2.18-stable or 2.19-development. We recommend installing directly from LilyPond’s website, rather than using whichever version of LilyPond your package manager provides, as these packages are often out-of-date.

Once you have installed LilyPond, test if LilyPond is callable from your command-line by running the following command:

~$ lilypond --version
GNU LilyPond 2.19.20

Copyright (c) 1996--2015 by
  Han-Wen Nienhuys <hanwen@xs4all.nl>
  Jan Nieuwenhuizen <janneke@gnu.org>
  and others.

This program is free software.  It is covered by the GNU General Public
License and you are welcome to change it and/or distribute copies of it
under certain conditions.  Invoke as `lilypond --warranty` for more
information.

If LilyPond is not callable from your command-line, you should add the location of the LilyPond executable to your PATH environment variable. The LilyPond documentation provides instructions for making the lilypond command available on the command-line under OSX at http://www.lilypond.org/macos-x.html.

If you are new to working with the command-line you should use Google to get a basic introduction to navigating in the shell, editing your profile and setting environment variables. There are more tutorials than we can count!

Install Graphviz (optional)

Abjad uses Graphviz, an open-source graph visualization library, to create graphs of rhythm-trees and other tree structures, and to create visualizations of class hierarchies for its documentation. Graphviz is not necessary for creating notation with Abjad.

To install Graphviz on Debian and Ubuntu:

~$ sudo apt-get install graphviz

To install Graphviz on OSX via Homebrew or MacPorts:

~$ brew install graphviz
~$ sudo port install graphviz

Once you have install Graphviz, test if Graphviz is callable from your command-line by running the following command:

~$ dot -V
dot - graphviz version 2.38.0 (20140413.2041)

Development installation

To perform development on Abjad, run the test suite, or build Abjad’s documentation locally, clone Abjad from the Github repository and install it in edit mode with its development extras:

~$ git clone https://github.com/Abjad/abjad.git
~$ cd abjad
abjad$ sudo pip install -e ".[development]"

Installing Abjad in development mode will install the following Python package dependencies.

  • pytest, for running Abjad’s test suite

  • Sphinx, for building Abjad’s documentation

  • sphinx_rtd_theme, for theming Abjad’s HTML documentation

  • PyPDF2, for performing preprocessing on LaTeX source with Abjad’s ajv book tool

Some of Sphinx’s dependencies provide optional optimized Python extensions, which must be compiled before they can be used. If your machine does not have a C compiler available, you may see error message while the pip install -e ".[development]" command runs. These warnings are harmless and will not prevent the dependencies from being installed.

To install C compilation tools on Debian and Ubuntu:

~$ sudo apt-get install build-essential

To install C compilation tools on OSX, we recommend simply installing XCode from the Apple App Store. Alternatively, you can install via Homebrew or MacPorts, although this may take a significant amount of time.

Additionally, a few non-Python tools need to be installed in order to develop Abjad or build its documentation: TeXLive, ImageMagick, and Graphviz (which was explained above).

Install TeXLive

Building the LaTeX documentation, running the test suite, and using Abjad’s ajv book document preprocessing tools require TeXLive. Abjad makes use of both pdftex for producing PDFs, and the pdfcrop tool distributed with TeXLive.

To install TeXLive on Debian and Ubuntu:

~$ sudo apt-get install texlive-full

On OSX, we recommend installing via the MacTeX distribution.

Install ImageMagick

Building Abjad’s documentation requires ImageMagick, a collection of raster image processing tools.

To install ImageMagick on Debian and Ubuntu:

~$ sudo apt-get install imagemagick

To install ImageMagick on OSX, we recommend installing via Homebrew or MacPorts:

~$ brew install imagemagick
~$ sudo port install imagemagick

Abjad and IPython

Abjad can be used with IPython to embed notation, graphs and audio into an IPython notebook. To work with Abjad in IPython, install Abjad with both its development and ipython extra dependencies:

~$ sudo pip install abjad [development, ipython]

Capturing MIDI files into an IPython notebook requires the fluidsynth package.

To install fluidsynth on Debian or Ubuntu:

~$ apt-get install fluidsynth

To install fluidsynth on OSX via Homebrew or MacPorts:

~$ brew install fluidsynth --with-libsndfile
~$ sudo port install fluidsynth

Once all dependencies have been installed, create a new IPython notebook and run the following magic command in a cell to load Abjad’s IPython extension:

%load_ext abjad.ext.ipython

Virtual environments

We strongly recommend installing Abjad into a virtual environment, especially if you intend to hack on Abjad’s own source code. Virtual environments allow you to isolate Python packages from your systems global collection of packages. They also allow you to install Python packages without sudo. The virtualenv package provides tools for creating Python virtual environments, and the virtualenvwrapper package provides additional tools which make working with virtual environments incredibly easy:

~$ pip install virtualenv virtualenvwrapper
...
~$ export WORKON_HOME=~/Envs
~$ mkdir -p $WORKON_HOME
~$ source /usr/local/bin/virtualenvwrapper.sh
~$ mkvirtualenv abjad
...
~(abjad)$ pip install abjad

If you have virtualenvwrapper installed, create a virtual environment and install Abjad into that instead:

~$ mkvirtualenv abjad
...
~(abjad)$ git clone https://github.com/Abjad/abjad.git
~(abjad)$ cd abjad
abjad(abjad)$ pip install -e ".[development]"

Configuring Abjad

Abjad creates a ~/.abjad directory the first time it runs. In the ~/.abjad directory you will find an abjad.cfg file. This is the Abjad configuration file. You can use the Abjad configuration file to tell Abjad about your preferred PDF file viewer, MIDI player, LilyPond language and so on.

Your configuration file will look something like this the first time you open it:

# Abjad configuration file created by Abjad on 31 January 2014 00:08:17.
# File is interpreted by ConfigObj and should follow ini syntax.

# Set to the directory where all Abjad-generated files
# (such as PDFs and LilyPond files) should be saved.
# Defaults to $HOME.abjad/output/
abjad_output_directory = /Users/username/.abjad/output

# Default accidental spelling (mixed|sharps|flats).
accidental_spelling = mixed

# Comma-separated list of LilyPond files that
# Abjad will "\include" in all generated *.ly files
lilypond_includes = ,

# Language to use in all generated LilyPond files.
lilypond_language = english

# Lilypond executable path. Set to override dynamic lookup.
lilypond_path = lilypond

# MIDI player to open MIDI files.
# When unset your OS should know how to open MIDI files.
midi_player =

# PDF viewer to open PDF files.
# When unset your OS should know how to open PDFs.
pdf_viewer =

# Text editor to edit text files.
# When unset your OS should know how to open text files.
text_editor =

Follow the basics of ini syntax when editing the Abjad configuration file. Background information is available at http://en.wikipedia.org/wiki/INI_file. Under MacOS you might want to set you midi_player to iTunes. Under Linux you might want to set your pdf_viewer to evince and your midi_player to tiMIDIty, and so on.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Abjad-2.16.tar.gz (27.2 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page