阿里云 ECS:CentOS 7.2 64bit 亲测,百分百可用
- 下载(下载linux64位)
官网:
http://phantomjs.org/
命令行:
wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
2.安装bzip2
yum install bzip2
3、解压文件
tar -jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2
4、安装完毕
mv phantomjs-2.1.1-linux-x86_64 /usr/local/src/phantomjs
ln -sf /usr/local/src/phantomjs/bin/phantomjs /usr/local/bin/phantomjs
5、测试(显示版本号2.1.1)
phantomjs -v
遇到的问题:
1、找不到 libfontconfig.so
phantomjs -v
phantomjs: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory
#解决方案
yum install fontconfig freetype2
网友评论