暂停功能不会暂停mt游戏

如何解决暂停功能不会暂停mt游戏

因此,自从将我的开始屏幕从游戏循环中移开以使崩溃功能起作用以来,我一直在尝试使暂停功能起作用,但是我开始遇到一个问题,即女巫使我的暂停功能不起作用。

https://gyazo.com/c814f08961bf1738b547d0949f9b2f87

视频显示不多,但是我按我的按钮使游戏暂停,但没有显示暂停游戏菜单,我真的不知道为什么。我试图将我的暂停功能从开始屏幕一直向上移动,但没有成功,我也尝试将其放在主循环上,但没有成功。

这是我的暂停功能

pause = False

        

    def quitgame():
        pygame.quit()

    def unpause():
        global pause
        pause = False
        
    def paused():
        
        largeText = pygame.font.SysFont("comicsansms",115)
        TextSurf,TextRect = text_objects("Paused",largeText)
        TextRect.center = ((500/2),(500/2))
        window.blit(TextSurf,TextRect)
    

    while pause:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                quit()
                
        

        button("Can Run",100,350,50,green,darkgreen,unpause)
        button("Sit",300,red,darkred,quitgame)
        
        pygame.display.update()
        clock.tick(15)

这是我的完整代码

import pygame,time
pygame.init()

#screen
window = pygame.display.set_mode((500,500))

fps = (10)
clock = pygame.time.Clock()

darkred = (200,0)

darkgreen = (0,200,0)

green = (0,255,0)

red = (255,0)

black = (0,0)
    
black = (0,0)
# START SCREEN
def text_objects(text,font):
    textSurface = font.render(text,True,black)
    return textSurface,textSurface.get_rect()

def message_display(text):
    largeText = pygame.font.Font('freesansbold.ttf',55)
    TextSurf,TextRect = text_objects(text,largeText)
    TextRect.center = ((500/2),(500/2))
    window.blit(TextSurf,TextRect)

    pygame.display.update()
    main_loop()
    time.sleep(1)


    
    

def crash():
    message_display('NOOB YOU DED')

def text_objects(text,textSurface.get_rect()

def button(msg,x,y,w,h,ic,ac,action=None):
    mouse = pygame.mouse.get_pos()
    click = pygame.mouse.get_pressed()
    #print(click)
    if x+w > mouse[0] > x and y+h > mouse[1] > y:
        pygame.draw.rect(window,(x,h))

        if click[0] == 1 and action != None:
                action()         
    else:
        pygame.draw.rect(window,h))

    smallText = pygame.font.SysFont("comicsansms",20)
    textSurf,textRect = text_objects(msg,smallText)
    textRect.center = ( (x+(w/2)),(y+(h/2)) )
    window.blit(textSurf,textRect)

def quitgame():
    pygame.quit()

    
def game_intro():

    intro = True

    while intro:
        for event in pygame.event.get():
            #print(event)
            if event.type == pygame.QUIT:
                pygame.quit()
                quit()

        window.fill((255,255))
        largeText = pygame.font.Font('freesansbold.ttf',60)
        TextSurf,TextRect = text_objects("ULTIMATE DASH",TextRect)

        button("Run!",main_loop)
        button("Sit!",quitgame)

        pygame.display.update()
        clock.tick(fps)
            
def main_loop():
    global pause   

    #set name
    pygame.display.set_caption("Noobs First Game")

    bg = pygame.image.load("leafy_background.jpg")
    mad1 = pygame.image.load("MAD1.png")
    mad2 = pygame.image.load("MAD2.png")
    happy1 = pygame.image.load("happytext1.png")
    happy2 = pygame.image.load("happytext2.png")
    happy3 = pygame.image.load("happytext3.png")
    hapad = pygame.image.load("happymadtext1.png")
    end =  pygame.image.load("endtext1.png")
    ss1 = pygame.image.load("Coin2.png")
    ss1 = pygame.transform.scale(ss1,(ss1.get_width()//12,ss1.get_height()//12))
    ss2 = pygame.image.load("HP.png")
    ss2 = pygame.transform.scale(ss2,(ss2.get_width()//5,ss2.get_height()//5))
    ff = pygame.image.load("Pbut.png")
    ff = pygame.transform.scale(ff,(ff.get_width()//4,ff.get_height()//4))


# PLAYER        
    class player:
        def __init__(self,width,height,color):
            self.x = x
            self.y = y
            self.width = width
            self.height = height
            self.color = color
            self.speed = 6
            self.isJump = False
            self.JumpCount = 10
            self.fall = 0
            self.rect = pygame.Rect(x,height)
            self.ss1 = pygame.image.load("Me1.png")
            self.ss1 = pygame.transform.scale(self.ss1,(self.ss1.get_width()//8,self.ss1.get_height()//8))
        def draw(self):
            self.rect.topleft = (self.x,self.y)
            pygame.draw.rect(window,self.color,self.rect)

            player_rect = self.ss1.get_rect(center = self.rect.center)  # the player_image << put your image like self.image
            player_rect.centerx += +2 # 10 is just an example
            player_rect.centery += -6# 15 is just an example
            window.blit(self.ss1,player_rect) # change the player_image to your image like self.image

# PLATFORM
    class platform:
        def __init__(self,color):
            self.x = x
            self.y = y
            self.width = width
            self.height = height
            self.color = color
            self.rect = pygame.Rect(x,height)
            self.ss1 = pygame.image.load("Dirt.png")
            self.ss1 = pygame.transform.scale(self.ss1,(self.ss1.get_width()//7,self.ss1.get_height()//7))
        def draw(self):
            self.rect.topleft = (self.x,self.rect)

            platform_rect = self.ss1.get_rect(center = self.rect.center)  # the player_image << put your image like self.image
            platform_rect.centerx += +2 # 10 is just an example
            platform_rect.centery += -3# 15 is just an example
            window.blit(self.ss1,platform_rect)

# WALL
    class wall:
        def __init__(self,height)
        def draw(self):
            self.rect.topleft = (self.x,self.rect)

        

# SPIKE
    class spike:
        def __init__(self,height)
            self.ss1 = pygame.image.load("Spike.png")
            self.ss1 = pygame.transform.scale(self.ss1,(self.ss1.get_width()//2,self.ss1.get_height()//3))
        def draw(self):
            self.rect.topleft = (self.x,self.rect)

            spike_rect = self.ss1.get_rect(center = self.rect.center)  # the player_image << put your image like self.image
            spike_rect.centerx += +10 # 10 is just an example
            spike_rect.centery += -16# 15 is just an example
            window.blit(self.ss1,spike_rect)


# ICE
    class ice:
        def __init__(self,color):
            self.x = x
            self.y = y
            self.width = width
            self.height = height
            self.color = color
            self.speed = 7
            self.ss1 = pygame.image.load("ice.png")
            self.rect = pygame.Rect(x,height)
            self.ss1 = pygame.transform.scale(self.ss1,(self.ss1.get_width()//1,self.ss1.get_height()//1))
        def draw(self):
            self.rect.topleft = (self.x,self.rect)
           

            
            fall_rect = self.ss1.get_rect(center = self.rect.center)
            fall_rect.centery += 2
            fall_rect.centerx += 1
            window.blit(self.ss1,fall_rect)


# COIN
    class coin:
        def __init__(self,color):
            self.x = x
            self.y= y
            self.width = width
            self.height = height
            self.color = color
            self.ss1 = pygame.image.load("Coin2.png")
            self.rect = pygame.Rect(x,(self.ss1.get_width()//10,self.ss1.get_height()//10))
        def draw(self):
            self.rect.topleft = (self.x,self.rect)

            coin_rect  = self.ss1.get_rect(center = self.rect.center)
            coin_rect.centery -= 1
            coin_rect.centerx -= 1
            window.blit(self.ss1,coin_rect)

#RECTA
    class recta:
        def __init__(self,color):
            self.x = x
            self.y =y
            self.width = width
            self.height = height
            self.color = color
            self.rect = pygame.Rect(x,self.y)

#PIKW
    class pike:
        def __init__(self,height)
            self.ss1 = pygame.image.load("Spike2.png")
            self.ss1 = pygame.transform.scale(self.ss1,self.rect)

            pike_rect = self.ss1.get_rect(center = self.rect.center)  # the player_image << put your image lik self.image
            pike_rect.centerx += +10 # 10 is just an example
            pike_rect.centery += -12# 15 is just an example
            window.blit(self.ss1,pike_rect)

#LIVE
    class live:
        def __init__(self,height)
            self.ss1 = pygame.image.load("HP.png")
            self.ss1 = pygame.transform.scale(self.ss1,(self.ss1.get_width()//4,self.ss1.get_height()//4))
        def draw(self):
            self.rect.topleft = (self.x,self.rect)

            pike_rect = self.ss1.get_rect(center = self.rect.center)  # the player_image << put your image lik self.image
            pike_rect.centerx += -5 # 10 is just an example
            pike_rect.centery += -30# 15 is just an example
            window.blit(self.ss1,pike_rect)       




    #draw player
    white = (255,255)

    darkred = (200,0)

    darkgreen = (0,0)

    green = (0,0)

    red = (255,0)

    black = (0,0)
    
    #PLAYER1
    player1 = player(0,400,40,white)

    #PLATFORMS
    platform1 = platform(0,400000,30,black)
    platform2 = platform(0,470,black)

    #WALLS
    wall1 = wall(0,40000,black)
    wall2 = wall(0,black)

    #SPIKES
    spike1 = spike(400,436,15,35,white)
    spike2 = spike(200,white)

    #ICES
    ice1 = ice(13250,70,25,95,white)
    ice2 = ice(13300,white)
    ice3 = ice(13350,white)
    ice4 = ice(13400,white)

    #COINS
    coin1 = coin(100,white)
    coin2 = coin(100,white)

    #RECTAS
    recta1 = recta(13200,600,white)
    recta2 = recta(34000,white)
    recta3 = recta(34450,white)
    recta4 = recta(43000,white)
    recta5 = recta(43450,white)
    recta6 = recta(43900,white)
    recta7 = recta(44250,500,white)
    recta8 = recta(45000,white)
    recta9 = recta(100,white)

    #PIKES
    pike1 = pike(799,799,1,white)
    pike2 = pike(799,white)

    live1 = live(43000,white)
    live2 = live(900,900,white)

    # LIST
    platforms = [platform1,platform2]
    walls = [wall1,wall2]
    spikes = [spike1,spike2]
    ices = [ice1,ice2,ice3,ice4]
    coins = [coin1,coin2]
    rectas = [recta1,recta2,recta3,recta4,recta5,recta6,recta7,recta8]
    pikes = [pike1,pike2]
    lives = [live1,live2]


    # MY GAME AND HOW IT LOOKS LIKE
    platformGroup = pygame.sprite.Group
    level = [
    "                                                                                                                                                                                                             ","                                                                                                                                                                                                                                                                               ","                                                                                                                                                                                                                                                               ","                                                                                                                                                                                                                            ","                                                                                                                                                                cccc                                                                                                                                                                                                                                                                                                                             c  c                                                                                                                                                                                                                                            psssss               ","                                                                                                                                                                c                                                                                                                                                                                                                                                                                                                             c  p  p  pssss                                                                                          p  p  p  p                                                                                                                              p                                                     ","                                                                                                               y   y       y   y                                c                                                                                                                              c  c   c                                                                              c     c             y                                                                       c   c  c     p                                                                                                    p                                                                                                                       cccccccccc  p                                               ","                                                                                  cc                             c  c  c  c  c                                  cccc                                                                     c   c  c                 c  c   c                                                                                                              p  p  p     c                                                                       c  p  p  p  p  p                                                                 cccccc                    p  p  p  p                                                                                                                          p  p  p  p                                                                                ","                                                    c  c  c  c                      c                                                            y   y          c                  c   c  c  c        y  y  y                            c   c  c                                            p  p  p  p    c                   y        y      y  y  y          yy   yy         c    p           p  p  p    c            c                            y   y   y             p                 p                                                              cccccc   y             p              p                                                                     y  y  y  y  y                                  p              p                               y   y                           ","                             p        y           p  p  p  p  p                ccccccc                         p  p  p  p  p  p  p          p                   c               p   y   y   y                                            ccccc  c               p  p  p  p     c          p   ss ss ss   p                                                                        p                      p  p  p         p                                            c  p                       p                                            p              cccccc              p                    psssss                                                       p                                                 p                    pssss                    p                            ","               c  c       p      c    c     k  p                   yyyyyyy          c      yy   yyyy        p                        k   p                      cccc          p                         c  c      yyyyyy    yyyyyyy      c   c  c            p              p          p                   s p    c    c         yyyyy          c   c       c c c c c c       cp                                      p    ss   yyyyyyy   yyyyyyy       c   c         p                             p              y    y    y             p     p    k      cccccc           p                                                           y   y   y   y   y     p                       c             k           p                    yyyyyyyy   yyyyyyy       p                                                              ","             s  s  s    p   ssss  c s  s     p    s s s s s s s      c c c        cc     s c  sc  c  s   p      s  s  s  s  s  s  s   p   s s    s   s   s  s  s  s  s  s  p           s   s k  s     s  s  s             s          s   c   c  c     k   p     s s s s s s s s     p     s s s s s s s s       s  s  s  s   k s   c c  s     s  s  s       p cs    s       p      s  s  s  s s s s s s s s s s    p            c c  c  s  c  c   s   s   s   s k  p     s s s s s s s s s s s ss      ccccccc   s    s    s      s  s  s           s  s  s  cccccc   s    p     s s s s s s s s s s s                                  s   s   s   s   s    p           s  s  s  s  s  c  s  s  s  s  s   s   p     sssssssssss                s         s  p                                                                    ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",] 


    for iy,row in enumerate(level):
        for ix,col in enumerate(row):
            if col == "p":
                new_platforms = platform(ix*57,iy*41.2,20,(255,255))
                platforms.append(new_platforms)
    for iy,col in enumerate(row):
            if col == "s":
                new_spikes = spike(ix*57,iy*39.7,255))
                spikes.append(new_spikes)
    for iy,col in enumerate(row):
            if col == "c":
                new_coins = coin(ix*57,55,255))
                coins.append(new_coins)
    for iy,col in enumerate(row):            
            if col == "y":
                new_pikes = pike(ix*57,255))
                pikes.append(new_pikes)

    for iy,col in enumerate(row):            
            if col == "k":
                new_lives = live(ix*57,255))
                lives.append(new_lives)


# PAUSE FUNCTION
        
    pause = False

        

    def quitgame():
        pygame.quit()

    def unpause():
        global pause
        pause = False
        
    def paused():
        
        largeText = pygame.font.SysFont("comicsansms",quitgame)
        
        pygame.display.update()
        clock.tick(15)


        
    
    






    
    #redraw
    def redrawwindow():
        window.fill((0,0))
        window.blit(bg,(0,0))
        

                    
        

    #draw olayer
        player1.draw()
        for platform in platforms:
            platform.draw()
        for wall in walls:
            wall.draw()
        for ice in ices:
            ice.draw()
        for recta in rectas:
            recta.draw()
        recta9.draw()


     # the score draw it on the screen
        window.blit(text,textRect)
        window.blit(talk,talkRect)

        for spike in spikes:
            spike.draw()
        for coin in coins:
            coin.draw()
        for pike in pikes:
            pike.draw()
        for live in lives:
            live.draw()



    #THE FONT AND NAMES
    font  = pygame.font.Font("freesansbold.ttf",30)
    score = 0
    text = font.render(" = "+str(score),0))
    textRect = text.get_rect()
    textRect.center = ((100,50))


    font  = pygame.font.Font("freesansbold.ttf",30)
    deaths = 5
    talk = font.render(" = "+str(deaths),0))
    talkRect = talk.get_rect()
    talkRect.center = ((100,90))

    fps = (30)
    clock = pygame.time.Clock()



    #MAIN LOOP
    run = True
    while run:
        clock.tick(fps)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                run = False
                
    #     LIVES AND SPIKE
        lstdel = []
        for i,spk in enumerate(spikes):
            if spk.rect.left > 500 or spk.rect.left < 0: continue  # off screen
            if player1.rect.colliderect(spk.rect):
                if deaths > 0:
                    deaths -= 1
                    talk = font.render(" = "+str(deaths),0))
                    talkRect.center = ((100,90))
                    lstdel.append(i)
        for i in lstdel[::-1]:
            del spikes[i]  #delete from end
      
        lstdel = []
        for i,pk in enumerate(pikes):
            if pk.rect.left > 500 or pk.rect.left < 0: continue  # off screen
            if player1.rect.colliderect(pk.rect):
                if deaths > 0:
                    deaths -= 1
                    talk = font.render(" = "+str(deaths),90))
                    lstdel.append(i)
        for i in lstdel[::-1]:
            del pikes[i]  #delete from end
      
        lstdel = []
        for i,lv in enumerate(lives):
            if lv.rect.left > 500 or lv.rect.left < 0: continue  # off screen
            if player1.rect.colliderect(lv.rect):
                if deaths > 0:
                    deaths += 1
                    talk = font.render(" = "+str(deaths),90))
                    lstdel.append(i)
        for i in lstdel[::-1]:
            del lives[i]
            
        #ADDING TO COIN +1
        for coin in coins:
            for one in range(len(coins)-1,-1,-1):
                if player1.rect.colliderect(coins[one].rect):
                    del coins[one]
                    score += 1
                    text = font.render(" = "+str(score),0))
                    textRect.center = ((100,50))

        

        if deaths < 1:
            crash()
    

            
        #moving keys
        keys = pygame.key.get_pressed()


        player1.x += player1.speed

        # ANOTHER PART OF PAUSE 
        if keys[pygame.K_p]:
            pause = True
            paused()

        #WHAT MAKES ICEBURG FALL
        for ice in ices:
            if player1.rect.colliderect(recta1.rect):
                ice.y += 3


            


        
        #WHAT MAKES EVEYTHING NOT FOLLOW THE PLAYER    
        if player1.x > 250:
            player1.x -= player1.speed
            for platform in platforms:
                platform.x -= player1.speed
            for spike in spikes:
                spike.x -= player1.speed
            for ice in ices:
                ice.x -= player1.speed
            for recta in rectas:
                recta.x -= player1.speed
            for pike in pikes:
                pike.x -= player1.speed
            for coin in coins:
                coin.x -= player1.speed
            for live in lives:
                live.x -= player1.speed



         #FALLING   
        if not player1.isJump:
            player1.y += player1.fall
            player1.fall += 1
            player1.isJump = False



                
            #COLLIDE WITH PLATFORM
            collide = False
            for platform in platforms:
                if player1.rect.colliderect(platform.rect):
                    collide = True
                    player1.isJump = False
                    player1.y = platform.rect.top - player1.height + 1
                    if player1.rect.right > platform.rect.left and player1.rect.left < platform.rect.left - player1.width:
                        player1.x = platform.rect.left - player1.width
                    if player1.rect.left < platform.rect.right and player1.rect.right > platform.rect.right + player1.width:
                        player1.x = platform.rect.right
                                  

                #COLLIDE
                if player1.rect.bottom >= 500:
                    collide = True
                    player1.isJump = False
                    player1.JumpCount = 8
                    player1.y = 500 - player1.height

                    
            #KEY FOR SPACEBAR
            if collide:
                if keys[pygame.K_SPACE]:
                    player1.isJump = True
                player1.fall = 0


        #JUMP COUNT
        else:
            if player1.JumpCount >= 0:
                player1.y -= (player1.JumpCount*abs(player1.JumpCount))*0.2
                player1.JumpCount -= 1
            else:
                player1.JumpCount = 10
                player1.isJump = False
            


    #END OF GAME            
        redrawwindow()
        

        # TEXT THAT CORATOR IS SAYING
        if player1.rect.colliderect(recta2):
            window.blit(mad1,(100,170))
            
        if player1.rect.colliderect(recta3):
            window.blit(mad2,170))

        if player1.rect.colliderect(recta4):
            window.blit(happy1,100))

        if player1.rect.colliderect(recta5):
            window.blit(happy2,100))    

        if player1.rect.colliderect(recta6):
            window.blit(happy3,100))

        if player1.rect.colliderect(recta7):
            window.blit(hapad,100))

        if player1.rect.colliderect(recta8):
            window.blit(end,100))

        window.blit(ss1,(30,25))
        
        window.blit(ss2,(-40,-20))

        window.blit(ff,(400,10))
            
        pygame.display.update()
    pygame.quit()
    unpause()
game_intro()
main_loop()


解决方法

正在调用set keyseq-timeout 250 函数,但是pause循环将被忽略。

这是因为您的缩进是错误的。 while循环不是while函数的一部分。该循环在游戏开始时运行,由于pause为False,因此不执行任何操作。

进行此更改:

pause
,

while暂停循环不在暂停函数内部。 当程序到达循环时,由于pause = False而跳过该循环,并且由于暂停不在函数中而从不返回

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-
参考1 参考2 解决方案 # 点击安装源 协议选择 http:// 路径填写 mirrors.aliyun.com/centos/8.3.2011/BaseOS/x86_64/os URL类型 软件库URL 其他路径 # 版本 7 mirrors.aliyun.com/centos/7/os/x86
报错1 [root@slave1 data_mocker]# kafka-console-consumer.sh --bootstrap-server slave1:9092 --topic topic_db [2023-12-19 18:31:12,770] WARN [Consumer clie
错误1 # 重写数据 hive (edu)&gt; insert overwrite table dwd_trade_cart_add_inc &gt; select data.id, &gt; data.user_id, &gt; data.course_id, &gt; date_format(
错误1 hive (edu)&gt; insert into huanhuan values(1,&#39;haoge&#39;); Query ID = root_20240110071417_fe1517ad-3607-41f4-bdcf-d00b98ac443e Total jobs = 1
报错1:执行到如下就不执行了,没有显示Successfully registered new MBean. [root@slave1 bin]# /usr/local/software/flume-1.9.0/bin/flume-ng agent -n a1 -c /usr/local/softwa
虚拟及没有启动任何服务器查看jps会显示jps,如果没有显示任何东西 [root@slave2 ~]# jps 9647 Jps 解决方案 # 进入/tmp查看 [root@slave1 dfs]# cd /tmp [root@slave1 tmp]# ll 总用量 48 drwxr-xr-x. 2
报错1 hive&gt; show databases; OK Failed with exception java.io.IOException:java.lang.RuntimeException: Error in configuring object Time taken: 0.474 se
报错1 [root@localhost ~]# vim -bash: vim: 未找到命令 安装vim yum -y install vim* # 查看是否安装成功 [root@hadoop01 hadoop]# rpm -qa |grep vim vim-X11-7.4.629-8.el7_9.x
修改hadoop配置 vi /usr/local/software/hadoop-2.9.2/etc/hadoop/yarn-site.xml # 添加如下 &lt;configuration&gt; &lt;property&gt; &lt;name&gt;yarn.nodemanager.res