Zend Studio Select the latest version: official website download
Download the. tar.gz version into Ubuntu, and then run Zend Studio under the installation directory.
At this point, you are prompted with an error:
A Java Runtime Environment (JRE) or Java development Kit (JDK) must is available in order to run Zend Studio ...
Install the JDK first: Download the website
sudo cp jdk-8u31-linux-i586.tar.gz/usr/localsudo tar zxvf jdk-8u31-linux-i586.tar.gz
Configure/etc/profile, add four rows at the end
Export Java_home=/usr/local/jdk1.8.0_31export jre_home=/usr/local/jdk1.8.0_31/jreexport CLASSPATH=.: $JAVA _home/ Lib: $JRE _home/lib: $CLASSPATHexport path=.: $JAVA _home/bin: $JRE _home/bin: $PATH
Configure ~/.BASHRC, add four rows at the end
Export Java_home=/usr/local/jdk1.8.0_31export Jre_home=${java_home}/jreexport classpath=.:${java_home}/lib:${jre_ Home}/libexport Path=${java_home}/bin: $PATH
Make configuration effective
SOURCE ~/.BASHRC
To establish a reference JRE connection for Zend Studio
mkdir jrecd jreln-s $JAVA _home/bin Bin
Now open Zend Studio and the interface will appear!
This article is from the "Accplayer Small Place" blog, make sure to keep this source http://accplaystation.blog.51cto.com/9917407/1613344
Install Zend Studio under Ubuntu