Help, I can't seem to print anything as soon as I call pyo audio server.
It just exits without returning anything.
Even something like this:
from pyo import *
s = Server()
print("this is not printed")
s.boot()
x = 3.4
print(x,"neither are these")
This should be working right? Or am I hugely mistaken?
I am using the python module pyo
version 1.0.1
with Python version 3.7.3
run using Python IDLE 3.7
btw: audio output works, I just want printing for debugging purposes