Подскажите, пожалуйста, как правильно скачать и откуда скачать и установить шрифт для игры в питон?При нажатии на терминал выводится ошибка:FileNotFoundError:
Код:
import pygame
pygame.init()
screen = pygame.display.set_mode((600,300))
pygame.display.set_caption('pygame itproger game')
square = pygame.Surface((170, 170))
square.fill('Blue')
myfont = pygame.font.Font('fonts/Santa Catarina',40)
text = myfont.render('egkeg',True,'Red')
running = True
while running:
pygame.draw.circle(screen,'Green',(90,90),70)
square.blit(square,(90,90))
pygame.draw.circle(screen,'Red',(90,90),75)
square.blit(text,(300,100))
pygame.display.update()
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.quit()