简体   繁体   中英

Python 3 pygame: cannot import pygame

I tried to make this snake game, but it said the following error when I imported pygame:

ModuleNotFoundError: No module named 'pygame'

What should I do?

frist see if pygame is installed using

pip3 freeze

if not, then install it:

pip3 install pygame

now import pygame won't raise error.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM