Having trouble using pyo in kivy

307 views Asked by At

I'm not sure if anyone has any experience with this, but I'm trying to write a program using kivy and pyo(Python digital signal processing module).
This is what the beginning of my code looks like:

from pyo import *  
import time, kivy  
kivy.require('1.8.0')

But every time I run the code(using sendTo), it says "there is no module named pyo".
Is there anyway to use modules outside of kivy and Python library? (Sorry if my question is unclear)

1

There are 1 answers

0
brousch On BEST ANSWER

You need to pip install pyo with the Python provided by the Kivy for Windows bundle:

  1. Start kivy.bat
  2. pip install pyo