Can anybody tell me how to set environment variable for Mac OS X 10.8 Mountain Lion. I just upgrade my Mac to Mac OS X 10.8. When I run a script. It said that
\"/U
This is what I have tried:
create the bash_profile:
$ vim ~/.bash_profile
add this to the file:
export JAVA_HOME=$(/usr/libexec/java_home)
execute the source command
$ source ~/.bash_profile
echo JAVA_HOME:
$ echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home
I've found the following post very helpful -
http://www.cyberciti.biz/faq/appleosx-bash-unix-change-set-path-environment-variable/
It explains how to set the path for a single user or system wide (OS X Leopard+)
I created a file ~/.bash_profile and added:
export PATH=/usr/local/mysql/bin:$PATH
export PATH=/Users/sparkyspider/dev/javalibs/Grails/grails-2.1.1/bin:$PATH
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_07.jdk/Contents/Home
And all's working great for me...