使用包含头文件的工件时,node-gyp重建错误

我正在一个没有互联网但.npmrc指向工件的盒子上工作。我在人工文件中有头文件以及由代码读取的校验和文件。 但是,node-gyp重建会导致以下错误, 谁能解释这个“错误:404状态码下载校验和”的含义,以及如何克服这些错误?包含校验和的文件的名称应该是什么(在人工语言中)

import pygame
pygame.init()


screen_width=800
screen_height=800
screen=pygame.display.set_mode([screen_width,screen_height])
screen.fill((255,255,255))

Quit=input("Press'Y' is you want to quit")

if Quit == "Y":
    pygame.display.quit()






Board = pygame.image.load("TicTactoeBoard.jpg")

screen.blit(Board,(0,0))

pygame.display.flip()
wangchen1211 回答:使用包含头文件的工件时,node-gyp重建错误

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/2597098.html

大家都在问