Whatever script I run in python (pygame) it always show the following black box:
However if I run the same script on my windows laptop it will show the correct output.
For Reference this is the code I have used to test, however I have tried other code and it is still the same result, it displays correctly on my Windows laptop but not on Mac.
import pygame
pygame.init()
win = pygame.display.set_mode((500,500))
I am using pygame==2.0.0.dev14 (Mac) and Windows just pygame 2.00, and am using python 3.8.6 on Mac and python 3.7 on windows.
I am sure that I have done something very stupid but any help would be greatly appriciated.