Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/windows/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Node.js &引用;错误:找不到模块";windows中wp calypso的Cygwin64终端出错_Node.js_Windows_Cygwin - Fatal编程技术网

Node.js &引用;错误:找不到模块";windows中wp calypso的Cygwin64终端出错

Node.js &引用;错误:找不到模块";windows中wp calypso的Cygwin64终端出错,node.js,windows,cygwin,Node.js,Windows,Cygwin,我正在尝试在windows中安装带有Cygwin64终端的wp calypso。我已成功克隆,并为Cygwin64终端添加了make模块,但在运行“make run”命令时,路径仍然出错 module.js:339 throw err; ^ Error: Cannot find module 'D:\cygdrive\c\Program' at Function.Module._resolveFilename (module.js:337:15) at Func

我正在尝试在windows中安装带有Cygwin64终端的wp calypso。我已成功克隆,并为Cygwin64终端添加了make模块,但在运行“make run”命令时,路径仍然出错

module.js:339
    throw err;
    ^

Error: Cannot find module 'D:\cygdrive\c\Program'
    at Function.Module._resolveFilename (module.js:337:15)
    at Function.Module._load (module.js:287:25)
    at Function.Module.runMain (module.js:467:10)
    at startup (node.js:136:18)
    at node.js:963:3
module.js:339
    throw err;
    ^

Error: Cannot find module 'D:\cygdrive\d\Angular\clones\wp-calypso\wp-calypso\bin\check-node-version'
    at Function.Module._resolveFilename (module.js:337:15)
    at Function.Module._load (module.js:287:25)
    at Function.Module.runMain (module.js:467:10)
    at startup (node.js:136:18)
    at node.js:963:3
Makefile:81: recipe for target 'node-version' failed
make: *** [node-version] Error 1

有人能帮我解决这个问题吗

查看的
make
路径有一些问题。首先,
cygdrive
应该是唯一的前缀,没有
D:\
。我假设也存在某种转义问题,
cygdrive\c\Program
应该是类似于
cygdrive\c\Program文件的东西。你知道如何修复这个错误路径吗?