你没有幻想'安装

时间:2015-02-17 17:03:08

标签: node.js path phantomjs

我安装了PhantomJS,但是当我运行Node.js代码时,我收到了错误(你没有安装#phantomjs')

var modules = '/home/engine/node_modules/';

var path = require('path');
var childProcess = require('child_process');
var phantom = require(modules+'phantom');
var binPath = phantom.path;

phantom.create(function(browser){ // Error happens here I think because the module is found
    // browser.createPage(function (page){});
});

如果在console.log binPath中我得到了未定义。

但是在PuTTY中,如果我:

cd ~/phantomjs/
[root@engine phantomjs]# bin/phantomjs
phantomjs>

我是否安装在错误的地方?

4 个答案:

答案 0 :(得分:4)

我的macOS也遇到了这个错误,所以这个命令就行了。

brew install phantomjs

编辑: phantomjs被转移到Cask。所以在2019年运行:

brew cask install phantomjs

答案 1 :(得分:3)

您需要加载全局PhantomJS模块而不是本地模块。

加载本地模块会阻止应用程序找到可运行的bin:

var phantom = require('phantom');

另外,添加utnas评论:

  

删除 var modules ='/ home / engine / node_modules /'; 。它没用。 Node.js知道在哪里找到模块。

将答案的两个部分混合到逻辑规则中,Node.js将始终首先从全局安装的模块加载模块(如果存在)。你强制它加载本地的,并阻止它找到垃圾箱。

答案 2 :(得分:1)

在这种情况下接受的答案并不是真正的解决方案。错误消息You don't have 'phantomjs' installedphantomjs-node模块的内部错误。我自己遇到了这个错误,我设法解决了这个问题:

var phantom = require('phantom');

var options = {
        path: '/usr/local/bin/'
};

phantom.create(function (ph) {
    ph.createPage(function (page) {
        page.open("http://www.google.com", function (status) {
            console.log("opened google? ", status);
            page.evaluate(function () { return document.title; }, function (result) {
                console.log('Page title is ' + result);
                ph.exit();
            });
        });
    });
}, options);

请注意options传递给phantom.create()方法。 path选项应该是包含phantomjs二进制文件的目录的完整路径。

答案 3 :(得分:0)

但是如果你在Windows上,你可以尝试这样的事情:

var phantom = require('phantom');

phantom.create(function (ph) {
  ph.createPage(function (page) {
     page.open("http://www.google.com", function (status) {
        console.log("opened google? ", status);
        page.evaluate(function () { return document.title; }, function  (result) {
            console.log('Page title is ' + result);
            ph.exit();
          });
        });
     });
    }, {
    dnodeOpts: {
       weak: false
    }
});