Install webstorm under linux

To install webstorm, you should first configure the environment to install the open source code library of java, and then download the installation package.

WebStorm is based on Java, we need to install the support of Oracle JDK. Note: Oracle JDK is the open source code library of java.

The command to install Oracle JDK is as follows:


1. sudo add-apt-repository ppa:webupd8team/java   
  
// add-apt-repository ppa:<ppa_name> Download the java open source code repository.

2.sudo apt-get update

//Get the latest software package (apt-get update)

3.sudo apt-get install oracle-java7-installer

//Download and install the java open source code base

4.sudo apt-get install oracle -java7-set-defaul

Run the command to check whether the installation is successful:

1.java -version

//Display the version of the java open source code. If it is displayed, the java open source code installation is successful.


[WebStorm] Installation

First , you need to download the Linux installation package of WebStorm, The address is as follows:

1. https://www.jetbrains.com/webstorm/download/

Then run the following commands to decompress and install and run WebStorm:


1. sudo tar xfz ~/Downloads/WebStorm-16.2.3.tar.gz

  //This step is to decompress first

2.sudo mv ~/Downloads/WebStorm-162.2228.20 /home/wang/download/

//mv Move command

// and then move the decompressed file to home/wang/download/ under

3. cd /home/wang/download/WebStorm-162.2228.20/                         

4.cd bin/
//Enter the bin directory
5.sudo sh webstorm. sh

// The sh command is a shell command language interpreter, executes commands read from standard input or read from a file

// start webstorm

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326094619&siteId=291194637