Description:
Hello, I am excited to find a way to bridge Python and Ableton but am struggling to get my script to work. If anyone could help me figure out how to get it up and running, that would be great. I’m on a Macbook Pro and tried to import rtmidi and pynput using terminal which appeared successful. However, the error is still happening. Thank you to whoever helps!
Error printout:
WARNING:root:python-rtmidi was not found; streaming midi input / output will not be available.
WARNING:root:pynput was not found; mouse and keyboard input will not be available.```
# The full code that resulted in the error:
```python3
from scamp import *
s = Session(tempo=100)
drums = s.new_midi_part("drums", "IAC Bus 1", start_channel=1, num_channels=1)
theramin = s.new_midi_part("theramin", "IAC Bus 1", start_channel=2, num_channels=1)
bass = s.new_midi_part("bass", "IAC Bus 1", start_channel=3, num_channels=1)
while True:
drums.play_note(38,1,1)
theramin.play_note(80,1,1)
bass.play_note(38,1,1)```