Mac 安装 phantomjs

作者: 踏云小子 | 来源:发表于2017-03-17 14:47 被阅读420次

    之前想在mac上装pyspider,一直未能如愿,后来把苹果的sip机制干掉之后(详见取消sip权限文章),一切都是那么顺畅,现提供两种方法:

    方法一:直接下载安装

    1、如果你没有安装OpenSSL,要先安装下

    brew install openssl
    

    2、下载

    http://phantomjs.org/download.html
    选择mac版本下载

    3、下载完成后,解压缩,然后放到自己的一个目录下面

    4、设置环境变量

    vi .bash_profile
    

    添加:

    export PATH=/Users/wuw/phantomjs-2.1.1-macosx/bin:$PATH
    

    保存退出

    5、验证

    输入phantomjs

    MacBook-Pro:~ wuw$ phantomjs
    phantomjs>
    

    搞定!

    方法二:懒人安装

    brew update && brew install phantomjs
    

    依然搞定!

    相关文章

      网友评论

        本文标题:Mac 安装 phantomjs

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