本文演示在CentOS 7 64位安装PhantomJS。
下载PhantomJS
$wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
解压安装包
$bzip2 -d phantomjs-2.1.1-linux-x86_64.tar.bz2
$tar xvf phantomjs-2.1.1-linux-x86_64.tar
安装包的格式为.tar.bz2,需要先用bzip2解压为.tar包,然后再解压tar包
安装依赖软件fontconfig
yum -y install wget fontconfig
添加phantomjs到/usr/bin
假定解压路径在/usr/local/下,解压完成后路径为:
/usr/local/phantomjs-2.1.1-linux-x86_64
为了使用方便,可以把安装目录phantomjs-2.1.1-linux-x86_64重命名为phantomjs
mv phantomjs-2.1.1-linux-x86_64 phantomjs
为了直接执行phantomjs命令,需要把phantomjs的脚本链接到/usr/bin下:
ln -s /usr/local/phantomjs/bin/phantomjs /usr/bin/
验证
创建hello.js
$vim hello.js
添加内容如下:
console.log('Hello, world!');
phantom.exit();
使用phantomjs运行hello.js
$phantomjs hello.js
Hello,world!