Last active
August 29, 2015 14:06
-
-
Save bryanyang0528/43ba94b21cb796fe4451 to your computer and use it in GitHub Desktop.
JAVA SETTING
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##設定Java Path | |
JAVA_HOME=/.../jdk1.8.0_05/HOME | |
CLASSPATH=.:$JAVA_HOME/lib.tools.jar | |
PATH=$JAVA_HOME/bin:$PATH | |
export JAVA_HOME CLASSPATH PATH | |
##設定spark path | |
export SCALA_HOME=/.../scala | |
export SPARK_HOME=/.../spark | |
export PATH=$SCALA_HOME/bin:$SPARK_HOME/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment