Python代码和pip安装错误

时间:2018-04-06 04:32:23

标签: python cmd pygame pip install

首先我要说的是,我是一名高中生,他到目前为止已经超越了他的理解水平。

我有计划通过pygame做一些事情(虽然我过去曾经安装了pip)但是在尝试运行程序时,我收到了这个错误:

Traceback (most recent call last):
File "C:/Users/cavem/Documents/Python/Personal Python Files/Sector 
Defence.py", line 1, in <module>
import pygame
File "C:\Users\cavem\AppData\Roaming\Python\Python36\site- 
packages\pygame\__init__.py", line 133, in <module>
from pygame.base import *
ModuleNotFoundError: No module named 'pygame.base'

(这是程序:)

import pygame

#initialization
pygame.init()
sector_0 = pygame.display.set_mode((810, 540)) 
not_crashed = True

#sector 0 anything
class sector_0():
    global sector_0
    sector_0.fill((255, 255, 255))

while not_crashed:
    pygame.display.flip()

所以我认为安装pygame可能存在问题,所以我尝试安装它,导致出现此错误:

C:\Users\cavem\Downloads\Python>Python -m pip install pygame
File "C:\Users\cavem\lib\site.py", line 177
file=sys.stderr)
    ^
SyntaxError: invalid syntax

(我也试过&#34; Python36 -m pip install pygame&#34;)

在这一点上我远远超出了我的深度,即使在这里搜索其他帖子之后,也找不到类似于我自己的问题。欢迎任何和所有帮助

*请注意,并非所有上述代码/错误都正确缩进

0 个答案:

没有答案