An open source DAW for GNU/Linux, inspired by modular synths. http://noisicaa.odahoda.de/
 
 
 
 
 
 
Go to file
Ben Niemann 75cccfc455 I thought I fixed that typo before... 2018-01-24 14:52:06 +01:00
3rdparty Update licenses for 2018. 2018-01-17 05:30:32 +01:00
bin Improve built-in pylint test. 2018-01-24 12:46:09 +01:00
cmake Use cmake for building. Started rewriting the audio core in C++. 2017-08-19 04:07:18 +02:00
data Update licenses for 2018. 2018-01-17 05:30:32 +01:00
noisicaa I thought I fixed that typo before... 2018-01-24 14:52:06 +01:00
noisidev Improve built-in pylint test. 2018-01-24 12:46:09 +01:00
playground prototype of sfz to csound parser 2016-06-05 15:55:18 +02:00
testdata Consolidate test files into a single testdata directory. 2018-01-21 05:52:44 +01:00
testlogs Use cmake for building. Started rewriting the audio core in C++. 2017-08-19 04:07:18 +02:00
.dir-locals.el Add .dir-locals.el file. 2017-10-04 17:56:06 +02:00
.gitignore Initial integration test suite. 2017-10-12 17:12:28 +02:00
CMakeLists.txt Update licenses for 2018. 2018-01-17 05:30:32 +01:00
COPYING Initial commit to git (from latest version in svn). 2015-11-29 13:02:36 +01:00
NOTES.org Give up running tests in parallel with unittest. 2018-01-24 14:32:55 +01:00
README.md Update build instructions. 2017-10-16 16:49:16 +02:00
requirements.txt Install PyQt5 via pip. 2018-01-24 09:56:46 +01:00
requirements.ubuntu.pkgs Install PyQt5 via pip. 2018-01-24 09:56:46 +01:00
setup.py Update licenses for 2018. 2018-01-17 05:30:32 +01:00

README.md

noisicaä

Important note: This is project is in pre-APLHA state, do not expect it to be usable in any form or shape.

  • It has bugs.
  • It does not do a lot of useful things.
  • There is no documentation.
  • And most importantly: the save format is not finalized and will change in incompatible ways, i.e. you will not be able to open your work from older versions.

What's This?

A simple music editor with a focus on classical musical notation.

Follow the development at http://noisicaa.blogspot.com/

License: GPL2 (see file COPYING).

Requirements

This project is currenly only designed to run on Linux desktops. No effort has yet been made to make it run on anything else than the latest Ubuntu release (16.04 at the time of writing).

Getting Started

These instructions are not targetted at end users. It is assumed that you're moderately experienced with software development on Linux.

First grab the latest source code:

git clone https://github.com/odahoda/noisicaa.git
cd noisicaa

Then install the deb packages that are needed to build and run it:

sudo apt-get install $(./requirements.ubuntu.pkgs)

For the first time setup, create a new virtualenv:

pyvenv-3.5 ENV
. ENV/bin/activate

And populate it with a bunch of python packages that noisicaä uses:

pip install -r requirements.txt

Now you should be ready to build it:

python3 setup.py build

And finally run

bin/noisicaä

Everytime you open a new bash to work with it, you have to activate the virtual environment using

. ENV/bin/activate