|
5 years ago | |
---|---|---|
3rdparty | 5 years ago | |
bin | 5 years ago | |
cmake | 6 years ago | |
data | 5 years ago | |
noisicaa | 5 years ago | |
noisidev | 5 years ago | |
playground | 7 years ago | |
testdata | 5 years ago | |
testlogs | 6 years ago | |
.dir-locals.el | 6 years ago | |
.gitignore | 6 years ago | |
CMakeLists.txt | 5 years ago | |
COPYING | 8 years ago | |
NOTES.org | 5 years ago | |
README.md | 6 years ago | |
requirements.txt | 5 years ago | |
requirements.ubuntu.pkgs | 5 years ago | |
setup.py | 5 years ago |
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