phantom js安装方法

phantomjs有多坑爹不知道,反正为了这个折腾了3个晚上,下面是记录:
由于谷歌得--headless发布,phantomjs已经不再更新了。而svgexport又需要这个插件,还是先用着吧~反正我也不是大神。
下载phantomjs
下载备份地址:

https://npm.taobao.org/dist/phantomjs/

版本:2.1.1 估计最后一个版本了
进入安装目录

cd /usr/local/

下载:

wget https://npm.taobao.org/mirrors/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2

解压:

tar -xvf  phantomjs-2.1.1-linux-x86_64.tar.bz2
yum install bzip2  //如果解压失败,安装bzip2 即可

解压完后添加环境变量

vi ~/.bash_profile
cd //进入root目录
. .bash_profile //重新加载配置文件
PATH=$PATH:$HOME/bin:/usr/local/phantomjs-2.1.1-linux-x86_64/bin
//环境变量:https://www.linuxidc.com/Linux/2017-01/139118.htm

红色背景部分为添加[ : ] + path

phantomjs -v  //2.1.1 输出版本号为安装成功,否则……

出错:
phantomjs: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory #解决方案

yum install fontconfig freetype2  //运行左边命令即可。

基本已经安装成功了,接下来svgexport正常使用即可~ 老铁 666……

好吧,坑爹的mac也装不了这货,我说该哭了还是该哭了?
下载地址:

wget https://npm.taobao.org/mirrors/phantomjs/phantomjs-2.1.1-macosx.zip
//解压
unzip phantomjs-2.1.1-macosx.zip

基本mac没有装wget,不行brew install wget
brew安装教程查看:
https://www.cnblogs.com/kccdzz/p/7676840.html

//接下来配置下系统环境变量应该就差不多了,具体方法如下:
cd ~
touch .bash_profile
export PATH=$HOME/phantomjs-2.1.1-macosx/bin:${PATH}
//export b表示输出
// PATH是常量  
// $HOME 也是常量,代表会员目录
// :${PATH} 表示其他的系统环境变量

你可能感兴趣的:(phantom js安装方法)