A Young Person’s Guide to SuperCollider

A Young Person’s Guide to SuperCollider

An introduction to basic SuperCollider concepts and also some aspects on basic and advanced usages, concepts and synthesis.

Named after a compilation.

Development

After this install the dependencies via

pip install -r requirements.txt

and run

jupyter lab

to start Jupyter Lab.

To build the documentation run

jupyter-book build .

and open the files which are written to the folder _build.

Please install pre-commit to sanitize your commits before contributing.

Build with Docker container

To build the book within a Docker container start by building the docker container

docker build -t sc-guide .

and run the build process in said container via

docker run -v ${PWD}/_docker_build:/home/sc-guide/_build --entrypoint jupyter-book sc-guide build .

The build files will be saved to _docker_build.