Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following link has an example of using python wave to play a wav file.

pyaudio help play a file

The trouble is on my computer any script with 'import wave' just produces a picture of a wave and does nothing else. (i.e. the rest of the script doesn't even run.) I have no idea why this is. Is there a way to fix this? I'm running python 2.7 on windows XP.

share|improve this question
1  
What does import imp; print imp.find_module('wave') show? – DSM Nov 25 '12 at 13:24

1 Answer

Most likely you have a file called wave.py in your current directory (or somewhere in your PYTHONPATH) that is run instead of the standard library module of the same name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.