I want to use the python-midi
package (from https://github.com/vishnubob/python-midi
).
Hwever there is an error when I use it.
import midi
pattern = midi.Pattern()
When I run it, I have the following error:
pattern = midi.Pattern()
AttributeError: 'module' object has no attribute 'Pattern'
I tried to install this package with:
pip install git+https://github.com/vishnubob/python-midi@feature/python3
pip install python-midi
python setup.py install
(in downloading the projet)
Thank you in advance for your help.