What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit:

  • /etc/paths
  • ~/.profile
  • ~/.tcshrc

I don't even have some of these, and I'm pretty sure that .tcshrc is wrong, since osx uses bash now. Anybody have any idea where these variables, especially PATH, are defined?

Edit: I'm running OS X 10.5

link|improve this question

73% accept rate
feedback

15 Answers

Bruno is right on track. I've done extensive research and if you want to set variables that are available in all GUI apps, your only option is /etc/launchd.conf

Please note that environment.plist does not work for applications launched via Spotlight. This is documented by Steve Sexton here.

1) Open a terminal prompt

2) Type sudo vi /etc/launchd.conf (note: this file might not yet exist)

3) Put contents like the following into the file

    setenv JAVA_VERSION 1.6
    setenv JAVA_HOME /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
    setenv GROOVY_HOME /Applications/Dev/groovy
    setenv GRAILS_HOME /Applications/Dev/grails
    setenv NEXUS_HOME /Applications/Dev/nexus/nexus-webapp
    setenv JRUBY_HOME /Applications/Dev/jruby

    setenv ANT_HOME /Applications/Dev/apache-ant
    setenv ANT_OPTS -Xmx512M

    setenv MAVEN_OPTS -Xmx1024M
    setenv M2_HOME /Applications/Dev/apache-maven

    setenv JMETER_HOME /Applications/Dev/jakarta-jmeter

4) Save your changes in VI and reboot your Mac.

5) Prove that your variables are working by opening a Terminal window and typing export and you should see your new variables. These will also be available in IntelliJ and other GUI apps you launch via Spotlight.

link|improve this answer
1  
I'm saying that the accepted answer (environment.plist) has not been successful for me. I've successfully used the launchd.conf approach on 10.5 and 10.6 on four machines. – Matthew McCullough Jan 19 '10 at 23:53
9  
Is there any way of doing this without doing a system reboot? – Sorin Sbarnea Feb 5 '10 at 14:18
1  
I also had to use /etc/launchd.conf and reboot for it to take affect. – David Collie May 2 '10 at 14:08
18  
The limitation mentioned above applies to MacOS X 10.5. However MacOS X 10.6 does not have this limitation anymore and setting the values inside environment.plist works fine even for apps launched via spotlight. So the selected answer is correct for Snow Leopard ;-) – Louis Jacomet Jun 9 '10 at 14:54
2  
Setting launchd.conf is one way, but needs a reboot (to restart launchd). If you want to avoid a reboot, see my answer stackoverflow.com/questions/135688/… – Matt Curtis Sep 21 '10 at 1:25
show 8 more comments
feedback

You can set the environment used by launchd (and, by extension, anything started from Spotlight) with launchctl setenv. For example to set the path:

launchctl setenv PATH /opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin

Or if you want to set up your path in .bashrc or similar, then have it mirrored in launchd:

PATH=/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin
launchctl setenv PATH $PATH

There's no need to reboot (though you will need to restart an app if you want it to pick up the changed environment.)

link|improve this answer
Very nice one! The advantage of using environment.plist though seems to be that OS X honours the contents of that files without the hassle of having to fire up a terminal first. Anyway, I think your answer mainly concentrated on avoiding the necessity of a reboot, so thx for that. – fotNelton Sep 27 '10 at 8:51
1  
@kapuzineralex Yes it avoids a reboot, also it changes the environment for programs started from Spotlight, which environment.plist does not do. – Matt Curtis Sep 29 '10 at 3:22
1  
Setting environment on this way did work for me only till I rebooted. The environment variable did not last after I rebooted the mac. Matthew's answer worked perfectly for me. – Shamal Karunarathne Aug 19 '11 at 4:08
2  
@Shamal: I +1'd your comment but bear in mind Matthew's answer requires a reboot, whereas I am pointing out the correct way to change it without a reboot. If you want both, I suggest you put your path settings in launchd.conf (so they persist across reboots), and then use a script with something like this "source /etc/launchctl.conf ; launchctl setenv PATH $PATH", so you can also "refresh" when you don't want to reboot. – Matt Curtis Aug 22 '11 at 5:00
1  
Worked great, didn't even need to reboot – Axsuul Sep 4 '11 at 19:31
show 3 more comments
feedback

You set them in

~/.MacOSX/environment.plist

See:

For PATH in the Terminal, you should be able to set in .bash_profile or .profile (you'll probably have to create it though)

link|improve this answer
thanks John...just beat me :) – tim_yates Sep 25 '08 at 20:13
3  
This is only if you actually expect them to be used by graphical apps. Since these don't typically use environment variables, it's not a very good place to set them. – Chris Hanson Sep 25 '08 at 21:33
8  
There's some very good examples of graphical apps that use environment variables. IntelliJ for example, likes to be able to see M2_HOME to know where Maven lives. To get it to see the variable, you'll need to set it in /etc/launchd.conf instead of environment.plist. – Matthew McCullough Feb 26 '09 at 3:58
3  
For reference: using preferences.plist was less than ideal with OS X 10.5 since at that time preferences.plist was not read for applications launched through spotlight, see comment by Louis to Matthew's answer and email.esm.psu.edu/pipermail/macosx-emacs/2010-May/002113.html . For OS X 10.6 environment.plist works just like it should. – Janus Sep 14 '10 at 1:36
The behavior with environment.plist appears to be a rolling target. In OS X 10.6.8, if PATH is set in environment.plist, then when .app applications are launched, they see only that path, and not the standard system path (/usr/bin:/bin:etc.) This behavior bugs up a lot of things, one easy one to see is launching the X11.app in Applications/Utilities. I have been bitten by PATH in environment.plist several times now. I'm done with it. – NoahR Dec 9 '11 at 0:09
feedback

I think what the OP is looking for is a simple, windows-like solution.

here ya go:

http://www.apple.com/downloads/macosx/system_disk_utilities/environmentvariablepreferencepane.html

link|improve this answer
1  
Still available at RCenvironment – Gilimanjaro Oct 26 '11 at 13:14
feedback

After chasing the elusive Environment Variables preference pane and discovering that the link is broken and a search on Apple's site seems to indicate they've forgotten about it... I started back onto the trail of the elusive launchd process.

On my system (Mac OS X 10.6.8) it appears that variables defined in environment.plist are being reliably exported to apps launched from Spotlight (via launchd). My trouble is that those vars are not being exported to new bash sessions in Terminal. I.e. I have the opposite problem as portrayed here.

NOTE: environment.plist looks like JSON, not XML, as described previously

I was able to get Spotlight apps to see the vars by editing ~/MacOSX/environment.plist and I was able to force the same vars into a new Terminal session by adding the following to my .profile file:

eval $(launchctl export)
link|improve this answer
1  
Not that elusive: RCenvironment – Gilimanjaro Oct 26 '11 at 13:15
feedback

Sometimes all of the previous answers simply don't work. If you want to have access to a system variable (like M2_HOME) in Eclipse or in IntelliJ the only thing that works for me in this case is:

First (step 1) edit /etc/launchd.conf to contain a line like this: "setenv VAR value" and then (step 2) reboot.

Simply modifying .bash_profile won't work because in osx the applications are not started as in other UNIX'es, they don't inherit the parents shell variables. All the other modifications won't work for a reason that is unknown to me. Maybe someone else can clarify about this.

link|improve this answer
3  
Applications started from Spotlight or by any other means all have /etc/launchd.conf read by their parent process, thus making that an appealing choice for where to set environment variables visible in all apps and shells. – Matthew McCullough Feb 26 '09 at 3:51
1  
See my answer for another solution, which avoids a reboot - stackoverflow.com/questions/135688/… – Matt Curtis Sep 29 '10 at 3:24
My MaxOS 10.6 machine does not have the /etc/launchd.conf file present. Is this either a new or an obsolete thing as of this version ? Or is this machine messed up ? – peterk Oct 9 '11 at 23:41
feedback

Any of the Bash startup files -- ~/.bashrc, ~/.bash_profile, ~/.profile. There's also some sort of weird file named ~/.MacOSX/environment.plist for environment variables in GUI applications.

link|improve this answer
feedback

for a single user modification, use ~/.profile of the ones you listed, the following link explains when the different files are read by bash

http://telin.ugent.be/~slippens/drupal/bashrc_and_others

if you want to set the environment variable for gui applications you need the ~/.MacOSX/environment.plist file

link|improve this answer
feedback

There are essentially two problems to solve when dealing with environment variables in OS X. The first is when invoking programs from Spotlight (the magnifying glass icon on the right side of the Mac menu/status bar) and the second when invoking programs from the Dock. Invoking programs from a Terminal application/utility is trivial because it reads the environment from the standard shell locations (~/.profile, ~/.bash_profile, ~/.bashrc, etc.)

When invoking programs from the Dock, use ~/.MacOSX/environment.plist where the <dict> element contains a sequence of <key>KEY</key><string>theValue</string> elements.

When invoking programs from Spotlight, insure that launchd has been setup with all the key/value settings you require.

To solve both problems simultaneously, I use a login item (set via the System Preferences tool) on my User account. The login item is a bash script that invokes an Emacs lisp function although one can of course use their favorite scripting tool to accomplish the same thing. This approach has the added benefit that it works at any time and does not require a reboot, i.e. one can edit ~/.profile, run the login item in some shell and have the changes visible for newly invoked programs, from either the Dock or Spotlight.

Details:

Login item: ~/bin/macosx-startup

#!/bin/bash
bash -l -c "/Applications/Emacs.app/Contents/MacOS/Emacs --batch -l ~/lib/emacs/elisp/macosx/environment-support.el -f generate-environment"

Emacs lisp funtion: ~/lib/emacs/elisp/macosx/envionment-support.el

;;; Provide support for the environment on Mac OS X

(defun generate-environment ()
  "Dump the current environment into the ~/.MacOSX/environment.plist file."
  ;; The system environment is found in the global variable:
  ;; 'initial-environment' as a list of "KEY=VALUE" pairs.
  (let ((list initial-environment)
        pair start command key value)
    ;; clear out the current environment settings
    (find-file "~/.MacOSX/environment.plist")
    (goto-char (point-min))
    (setq start (search-forward "<dict>\n"))
    (search-forward "</dict>")
    (beginning-of-line)
    (delete-region start (point))
    (while list
      (setq pair (split-string (car list) "=")
            list (cdr list))
      (setq key (nth 0 pair)
            value (nth 1 pair))
      (insert "  <key>" key "</key>\n")
      (insert "  <string>" value "</string>\n")

      ;; Enable this variable in launchd
      (setq command (format "launchctl setenv %s \"%s\"" key value))
      (shell-command command))
    ;; Save the buffer.
    (save-buffer)))

NOTE: This solution is an amalgam of those coming before I added mine, particularly that offered by Matt Curtis, but I have deliberately tried to keep my ~/.bash_profile content platform independent and put the setting of the launchd environment (a Mac only facility) into a separate script.

link|improve this answer
feedback

1.

vim ~/.base_profile

the file may not exists , you can just create it.

2.type in this and save the file:

export PATH=$PATH:YOUR_PATH_HERE

3.run

source ~/.base_profile
link|improve this answer
feedback

well, I'm unsure about /etc/paths and ~/.MacOSX/environment.plist those are new.

But with bash, you should know that .bashrc is executed with every new shell invocation and .bash_profile is only executed once at startup. Don't know how often this is with macos, I think the distinction has broken down with the window system launching everything.

Personally, I eliminate the confusion by creating a .bashrc with everything I need and then do:

ln -s .bashrc .bash_profile
link|improve this answer
feedback

One thing to note in addition to the approaches suggested is that, in OS X 10.5 at least, the variables set in launchd.conf will be merged with the settings made in .profile. I suppose this is likely to be valid for the settings in ~/.MacOSX/environment.plist too, but I haven't verified.

link|improve this answer
feedback

the $PATH variable is also subject to path_helper, which in turn makes use of the /etc/paths file and files in /etc/paths.d.

A more thorough description can be found here: http://hea-www.harvard.edu/~fine/OSX/path_helper.html

link|improve this answer
feedback

For Bash, try adding your environment variables to the file /etc/profile to make them available for all users. No need to reboot, just start a new Terminal session.

link|improve this answer
feedback

After having set my var in .MacOSX/environment.plist they become accessible in my windowed app ONLY if I start it from command line (with 'open').

If I double-click on it, launch it thru Spotlight or Quicksilver, it won't find the variables.

Has anyone encountered this odd behaviour?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.