美文网首页我爱编程
阿里云CentOS 7 安装 PhantomJS

阿里云CentOS 7 安装 PhantomJS

作者: 李宏博 | 来源:发表于2017-08-18 21:32 被阅读0次

    阿里云 ECS:CentOS 7.2 64bit 亲测,百分百可用

    1. 下载(下载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
    

    相关文章

      网友评论

        本文标题:阿里云CentOS 7 安装 PhantomJS

        本文链接:https://www.haomeiwen.com/subject/bohzrxtx.html