|
GettingStartedInstall
Download and install GWT
Install GWTInstall the Java SDKIf you don't have a recent version of the Java SDK installed (version 1.5 or higher), download and install the Sun Java Standard Edition SDK. Download GWTDownload the GWT distribution for your operating system. Unzip the GWT distributionOn Windows, extract the files from gwt-windows-1.5.3.zip with a program like WinZip. On Mac, you can unpack the distribution with a command like: $PP_OFF tar xvzf gwt-mac-1.5.3.tar.gz On Linux, use the command: $PP_OFF tar xvf gwt-linux-1.5.3.tar.bz2 That's all there is to it! GWT doesn't use an installer application; all the files you need to run and use GWT are located in the extracted directory. Adding the GWT application directory to your PATH environment variableIn order to invoke the command-line tools without entering their full path names, add them to your system's command search path. To do this, in the PATH environment variable, identify the directory in which you unpacked the GWT distribution. Windows
Mac or LinuxEdit a file named .profile or .bash_profile in your home directory. For example, if you unpacked GWT in /home/user/gwt-linux-1.5.3/, update your profile as follows: $PP_OFF PATH=$PATH:/home/user/gwt-linux-1.5.3/ export PATH You will need to log out of your account and log back in before the PATH setting takes effect. |
Sign in to add a comment
"You will need to log out of your account and log back in before the PATH setting takes effect."
> source .bash_profile