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!