我成功地安装了尖叫声-蒙戈。但是在执行npx screeps start时发生了一个错误,如下所示:
gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, stat '/root/.npm/_npx/4679/lib/node_modules/screeps/node_modules/isolated-vm/.node-gyp/8.16.0'
gyp ERR! System Linux 4.15.0-54-generic
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release" "-j" "4"
gyp ERR! cwd /root/.npm/_npx/4679/lib/node_modules/screeps/node_modules/isolated-vm
gyp ERR! node -v v8.16.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! isolated-vm@1.7.10 install: `node-gyp rebuild --release -j 4`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the isolated-vm@1.7.10 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2019-07-30T01_45_59_317Z-debug.log
Install for screeps@latest failed with code 1下面是我使用的版本列表。
以下是安装screepsmod-mongo时的输出。
Screeps mod "screepsmod-mongo" has been successfully installed
+ screepsmod-mongo@2.5.5
added 15 packages from 10 contributors, removed 541 packages, updated 1 package and audited 183 packages in 85.481s
found 3 vulnerabilities (1 low, 2 high)
run `npm audit fix` to fix them, or `npm audit` for details我的mongodb和redis安装正确,地址是mongodb://screeps-mongo和screeps-redis。我在.screepsrc中做了以下配置
[mongo]
host = mongodb://screeps-mongo
[redis]
host = screeps-redis下面是mods.json中的
"mods": [
"node_modules/screepsmod-mongo/index.js"
]我怎样才能解决这个问题?
发布于 2019-08-01 01:22:28
我解决了,它似乎是由npm引起的。切换到yarn安装不会导致此问题。
https://stackoverflow.com/questions/57263663
复制相似问题