python-midi icon indicating copy to clipboard operation
python-midi copied to clipboard

No module named sequencer

Open ghost opened this issue 8 years ago • 2 comments

midilisten.py

import midi.sequencer as sequencer

ImportError: No module named sequencer

ghost avatar Dec 30 '16 07:12 ghost

Seeing the same issue, Ubuntu python 2.7.x

Tried installing both using pip, and by cloning from git, and running the script

wilderfield avatar Mar 13 '17 18:03 wilderfield

I had this same issue. I noticed this first output when installing manually with setup.py: Warning: could not find asoundlib.h, not including ALSA sequencer support!

The setup won't install the sequencer if you do not have ALSA packages installed. I was able to fix by installing the "libasound2-dev" package on my Kali-Linux installation: sudo apt-get install libasound2-dev

Hope this helps.

ZonkSec avatar Oct 25 '17 22:10 ZonkSec