在nodejs中运行phantomjs模块时,我遇到了这个奇怪的错误
phantom stderr: Fontconfig warning: ignoring UTF-8: not a valid region tag
/var/www/myWeb/Web/Front/node_modules/phantom/node_modules/dnode/node_modules/weak/node_modules/bindings/bindings.js:83
throw e
^
Error: /var/www/myWeb/Web/Front/node_modules/phantom/node_modules/dnode/node_modules/weak/build/Release/weakref.node: invalid ELF header
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at bindings (/var/www/myWeb/Web/Front/node_modules/phantom/node_modules/dnode/node_modules/weak/node_modules/bindings/bindings.js:76:44)
at Object.<anonymous> (/var/www/myWeb/Web/Front/node_modules/phantom/node_modules/dnode/node_modules/weak/lib/weak.js:7:35)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
谁能告诉我如何解决它?它总是导致nodejs应用程序崩溃。我尝试重建phantomjs节点模块,重新安装最新的phantomjs like this one,但仍然出现错误。我尝试构建phantomjs源,但显然我的机器没有足够的虚拟内存。 :(
答案 0 :(得分:0)
事实证明,当我运行npm install
时,ubuntu会下载不同的文件。因此,在我的计算机(OSX)中,它在ubuntu上运行正常,它崩溃了。要解决此问题,我会再次运行npm remove
然后npm install
。