Skip to content

Commit

Permalink
Require libjack-dev on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Oct 18, 2020
1 parent 903b93a commit f57f0ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run: |
sudo apt-get update -y
sudo apt-get install python3 python3-setuptools python3-pip
sudo apt-get install libasound2-dev
sudo apt-get install libasound2-dev libjack-dev
sudo pip3 install pytest
- name: Python test
run: python3 setup.py test
10 changes: 8 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@

isobar has been tested on Linux (Ubuntu, Raspberry Pi OS) and macOS. It has not been officially tested on Windows, although third-party contributions of support and QA efforts would be welcomed.

It requires Python 3.5.
It requires Python 3.5 or above.

On Linux, the `libasound` and `libjack-dev` packages are also required:

```
apt install libasound2-dev libjack-dev
```

### 1. Install isobar

Expand Down Expand Up @@ -56,4 +62,4 @@ The script will print the default MIDI driver to screen, and begin triggering no
## Next steps

- [Code examples](https://github.com/ideoforms/isobar/tree/master/examples)
- Read about [Patterns](patterns/index.md), [Timelines](timelines/index.md), [Events](events/index.md) and [Devices](devices/index.md),
- Read about [Patterns](patterns/index.md), [Timelines](timelines/index.md), [Events](events/index.md) and [Devices](devices/index.md),

0 comments on commit f57f0ab

Please sign in to comment.