Reputation: 13
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)
Upvotes: 1
Views: 301
Reputation: 1072
You need to pip install pyo with the Python provided by the Kivy for Windows bundle:
Upvotes: 2