- 官网下载地址:http://phantomjs.org/download.html
- 解压
- 传到Linux服务器
- ln -sf /home/phantomjs-2.1.1-linux-i686/bin/phantomjs /usr/local/bin/phantomjs
- vim /etc/profile
- 在文件的最后一行,添加安装路径path语句:(注意路径是phantomjs的安装路径)
export PATH=${PATH}:/usr/local/src/phantomjs/bin/ - :wq
- 在文件的最后一行,添加安装路径path语句:(注意路径是phantomjs的安装路径)
- source /etc/profile
- phantomjs -v
- 如果遇到:
phantomjs: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory
解决方法:
yum install fontconfig-devel
-
字体不显示或中文乱码
-
在centos中执行:yum install bitmap-fonts bitmap-fonts-cjk
-
在ubuntu中执行:sudo apt-get install xfonts-wqy
-