user3701337
user3701337

Reputation: 13

Having trouble using pyo in kivy

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

Answers (1)

brousch
brousch

Reputation: 1072

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

  1. Start kivy.bat
  2. pip install pyo

Upvotes: 2

Related Questions