How to Install PhantomJS on Ubuntu 16.04
Posted cicarius
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to Install PhantomJS on Ubuntu 16.04相关的知识,希望对你有一定的参考价值。
Introduction
PhantomJS is a scripted, headless browser that can be used for automating web page interaction. PhantomJS is a free, open source and distributed under the BSD license. PhantomJS is based on WebKit and is very similar browsing environment to Safari and Google Chrome. The PhantomJS javascript API can be used to open web pages, execute user actions and take screenshots.
In this tutorial, we will learn how to install PhantomJS in Ubuntu 16.04 server.
Step 1: Update the system
Before starting, it is recommended to update the system with the latest stable release. You can do this with the following command:
sudo apt-get update -y
sudo apt-get upgrade -y
sudo shutdown -r now
Step 2: Install PhantomJS
Before installing PhantomJS, you will need to install some required packages on your system. You can install all of them with the following command:
sudo apt-get install build-essential chrpath libssl-dev libxft-dev libfreetype6-dev libfreetype6 libfontconfig1-dev libfontconfig1 -y
Next, you will need to download the PhantomJS. You can download the latest stable version of the PhantomJS from their official website. Run the following command to download PhantomJS:
sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
Once the download is complete, extract the downloaded archive file to desired system location:
sudo tar xvjf phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /usr/local/share/
Next, create a symlink of PhantomJS binary file to systems bin dirctory:
sudo ln -s /usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/
Step 3: Verify PhantomJS
PhantomJS is now installed on your system. You can now verify the installed version of PhantomJS with the following command:
phantomjs --version
You should see the following output:
2.1.1
以上是关于How to Install PhantomJS on Ubuntu 16.04的主要内容,如果未能解决你的问题,请参考以下文章
How to install VNC server on CentOS 6
ubuntu——How to Install MySQL GUI