问题描述:
import pygame
后每次运行py
都会输出以下提示信息:
pygame 2.4.0 (SDL 2.26.4, Python 3.8.6)
Hello from the pygame community. https://www.pygame.org/contribute.html
解决方案:
参考资料:
Python3.7如何解决Pygame显示欢迎的问题_注释pygame的欢迎_tiantian520_tt的博客-CSDN博客
版权属于:soarli
本文链接:https://blog.soarli.top/archives/699.html
转载时须注明出处及本声明。
import os
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = "hide"
import pygame
直接改源码有点难受。
记得这种方式我也试过,貌似没用才考虑直接从源头解决