安装phantomjs后输入phantomjs --v提示:-bash:phantomjs:command not found


centos,按照网上的教程:


 sudo yum install gcc gcc-c++ make git openssl-devel freetype-devel fontconfig-devel 
git clone git://github.com/ariya/phantomjs.git 
cd phantomjs 
git checkout 1.9 
./build.sh

安装了一个多小时完成后输入phantomjs --v,显示-bash:phantomjs:command not found,请问该怎么办?

phantomjs centos

每逢寂寞倍思春 10 years, 10 months ago

估计是phantomjs没有把其可执行路径加入到PATH中。


 # vim /etc/profile

在最后,添加:


 export PATH="$PATH:/yourpath"

fishman answered 10 years, 10 months ago

试试一楼的方法Ok不,不行的话,加上下面这句话,我似乎之前也遇到过


 export PHANTOMJS_EXECUTABLE=/usr/local/bin/phantomjs

/usr/local/bin/phantomjs 换成你自己安装之后的二进制文件路径。

三千院-大鲸鲸 answered 10 years, 10 months ago

Your Answer