Every time I run my python game, I get an annoying alert in the console saying:
Hello from the pygame community. https://www.pygame.org/contribute.html
How do I delete this?
Modifying the library would mean that you would have to modify the library everywhere you ship your code, and is generally not a good idea.
The upcoming release 1.9.5
of pygame will include an option to turn off the message without modifying the library:
You have to set the environment variable PYGAME_HIDE_SUPPORT_PROMPT
to any value.
On Windows: set PYGAME_HIDE_SUPPORT_PROMPT=1
On Linux etc.: export PYGAME_HIDE_SUPPORT_PROMPT=1
Or even in your code:
from os import environ
environ['PYGAME_HIDE_SUPPORT_PROMPT'] = '1'
import pygame # it is important to import pygame after that
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pygame/
and open _init_.py
(hint: this is the Library for your Macintosh HD, not your users library)
print('Hello from the pygame community ... )
If you can't find your Library folder, then you probably still have the default settings set to hide it.
type defaults write com.apple.finder AppleShowAllFiles YES;
in the terminal
hold option + right click on finder and click relaunch.
(this is untested, if you have problems let me know so I can update)
C:\Python\Lib\site-packages\pygame
and open _init_.py
print('Hello from the pygame community ... )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With