CentOS7安装PhantomJS

Posted 想54256

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装PhantomJS相关的知识,希望对你有一定的参考价值。

1、获取安装包

wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2

2、将bz2格式装换成tar格式

bzip2 -d phantomjs-2.1.1-linux-x86_64.tar.bz2

3、解压缩到/usr/local目录下

tar xvf phantomjs-2.1.1-linux-x86_64.tar -C /usr/local/

4、安装依赖

yum -y install wget fontconfig

5、重命名

mv /usr/local/phantomjs-2.1.1-linux-x86_64/ /usr/local/phantomjs

6、进入目录中,为PhantomJS添加可执行权限

cd /usr/local/phantomjs/bin

chmod 777 phantomjs

7、建立软链接

ln -s /usr/local/phantomjs/bin/phantomjs /bin 

8、测试是否可执行

[[email protected] bin]# phantomjs
phantomjs>  

这样就OK了

 


以上是关于CentOS7安装PhantomJS的主要内容,如果未能解决你的问题,请参考以下文章

centos7.6下pyspider + python2.7安装

linux 安装phantomjs

linux centos7 环境变量设置

Centos7-安装部署Mirrorgate

你没有安装'phantomjs'

如何用python+selenium+phantomjs获得一个网页的动态生成的html代码