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.

Everytime I run pygame.init() I get "there is no soundcard" message. One thread in the ubuntu forums said to run pygame.init() twice and that message will disappear. The thing is, when I write a script then run the script from terminal, I still get the no sound card message.

What should I do?

Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame, sys
>>> pygame.init()
there is no soundcard
(6, 0)
>>> 

Thanks!

share|improve this question
forgot to mention--my pc (ubuntu OS) has a soundcard and works with other application. It is only when I do "pygame.init() that I get the no soundcard message. – Jim Syyap Jul 16 '11 at 3:40
Sounds like pygame is not properly compiled with audio support. I suggest you use pdb and step-debug through audio initialization part to see what happens. – Mikko Ohtamaa Jul 16 '11 at 11:28

2 Answers

I get the same error but the sound still works, maybe it's best to just ignore the warning.

share|improve this answer

Not really a solution, but it will overwrite the error. Write the pygame.init() twice, on different rows.

[later edit] Today I'd made some mistakes and I should reinstall my Ubuntu 11.10. The first thing I've done I tested the pygame. On clean install I'd installed sudo apt-get install python-pygame with all dependencies, and it works without soundcard error. There must be one config file from a dependency that generate this error.

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.