I apologize if this seems like a question that has been asked a lot before, but please hear me out... :-) I have been Googling like crazy for answers, and although I found many, all seem to presuppose quite a bit of previous experience with Mac OS - I'm completely new to it, having worked on a PC for many years.

So when someone says "edit your .plist file" or "your .profile" or ".bash_profile" etc, this just confuses me. I have no idea where these files are, how to create them if I have to do that, etc, and also why there seem to be so many different ones (why? Do they do different things?)

So could someone please explain very patiently to a previous Windows user (wanting desperately to become more familiar with the pleasant if initially somewhat confusing OS X world) how to do this step by step?

I need the variables to be set both for GUI applications and command line applications, and at the moment it's for an ant script that needs the variables, but there will most likely be other needs as well.

Please note that I have Lion too, since many of the answers you get Googling seem to be outdated for Lion...

Also note that I have practically zero experience using the Terminal. I'm willing to learn, but please explain for a novice...

link|improve this question

73% accept rate
feedback

4 Answers

up vote 33 down vote accepted

First, one thing to recognize about OS X is that it is built on Unix. This is where the .bash_profile comes in. When you start the Terminal app in OS X you get a bash shell by default. The bash shell comes from Unix and when it loads it runs the .bash_profile script. You can modify this script for your user to change your settings. This file is located at:

~/.bash_profile

OS X windows applications receive environment variables from the your environment.plist file. This is likely what you mean by the ".plist" file. This file is located at:

~/.MacOSX/environment.plist

If you make a change to your environment.plist file then OS X windows applications, including the Terminal app, will have those environment variables set. Any environment variable you set in your .bash_profile will only affect your bash shells.

Generally I only set variables in my .bash_profile file and don't change the .plist file. Most OS X windows applications don't need any custom environment. Only when an application actually needs a specific environment variable do I change the environment.plist.

It sounds like what you want is to change the environment.plist file, rather than the .bash_profile.

One last thing, if you look for those files, I think you will not find them. If I recall correctly, they were not on my initial install of Lion.

Edit: Here are some instructions for creating a plist file.

  1. Open Xcode
  2. Select File -> New -> New File...
  3. Under Mac OS X select Resources
  4. Choose a plist file
  5. Follow the rest of the prompts

To edit the file, you can Control-click to get a menu and select Add Row. You then can add a key value pair. For environment variables, the key is the environment variable name and the value is the actual value for that environment variable.

Once the plist file is created you can open it with Xcode to modify it anytime you wish.

link|improve this answer
Ok, thanks. I think I have understood that the tilde means my so called home folder, right (i.e. /Users/Anders in my case)? So if they do not exist, I should create a new empty text file, with the names you mentioned (will I be allowed to create a file that starts with a dot?)? And then add what in those files to set an environment variable? For instance, I need to add a variable AHF_OPT which should point to a folder needed by an ant script, how do I add that in these two files? – Anders Svensson Sep 21 '11 at 15:08
Yes, the tilde is your home directory. Do you have Xcode installed? It is the only application I know of for creating and editing plist files. – David V Sep 21 '11 at 15:10
I added some instructions for editing a plist file with Xcode. If you don't have Xcode, you can find an existing plist file and change it in any text editor. It is quite straight forward. – David V Sep 21 '11 at 15:18
Control-click inside the document to get a menu to add a row? Is that correct? Anyway, thanks I'll try it out. And if I understand your answer correctly, by doing this I wouldn't even have to set the bash_profile file? And this works in Lion too? I had read some comments that there were problems with the environment.plist file in Lion... – Anders Svensson Sep 21 '11 at 15:38
1  
Two things to try: First, is your pasted string has an incorrect semicolon after ".dtd>" Maybe it is a copy and paste error, but I had to remove it to get Xcode to read the file. Second, you may need to log out and back in for the effects to take place. – David V Sep 21 '11 at 21:04
show 8 more comments
feedback

Your ".profile" or ".bash_profile" are simply files that are present in your "home" folder. If you open a Finder window and click your account name in the Favorites pane ... you won't see them. If you open a Terminal window and type "ls" to list files ... you still won't see them. But you can find them by using "ls -a" in the terminal. Or if you open your favorite text editor (say TextEdit since it comes with OS X) and do File->Open and then press Command+Shift+. and click on your account name (home folder) you will see them as well. If you do not see them, then you can simply create one in your favorite text editor.

Now, adding environment variables is fairly straightforward and remarkably similar to windows conceptually. In your .profile just add, one per line, the variable name and its value as follows:

export JAVA_HOME=/Library/Java/Home
export JRE_HOME=/Library/Java/Home

etc.

If you are modifying your "PATH" variable, be sure to include the system's default PATH that was already set for you:

export PATH=$PATH:/path/to/my/stuff

Now here is the quirky part, you can either open a new Terminal window to have the new variables take effect, or you will need to type ". .profile" or ". .bash_profile" to reload the file and have the contents be applied to your current Terminal's environment.

You can check that your changes took effect using the "set" command in your Terminal. Just type "set" (or "set | more" if you prefer a paginated list) and be sure what you added to the file is there.

As for adding environment variables to GUI apps, that is normally not necessary and I'd like to hear more about what you are specifically trying to do to better give you an answer for it.

link|improve this answer
Thanks, I didn't quite understand the last part though, I either have to open a Terminal window to have them set, or type .profile? But wouldn't I have to open a Terminal window to type .profile? And if they are automatically set just by opening a Terminal window, then why do I need to type that...? And when I have opened one, will they be set permanently then? I probably misunderstood you, because not even my question makes sense to me... – Anders Svensson Sep 21 '11 at 15:36
If you have a Terminal window open prior to changing your profile, those changes will not get reflected in the existing Terminal's environment. Your quick solution is to just open a new Terminal window. That's all. Every new window will have everything in the .profile set on it. Always. The way to fix old, already open windows is to type ". .profile" 2 periods, 1 space between them. The "set" command is to set environment variables that die when you end the session you set them in. Using "set" without arguments lists the variables currently set. – tokkov Sep 21 '11 at 15:44
Ahhh, I see the confusion I created. If you had no terminal windows open, then each new window will load the .profile when it is opened and you need to do nothing. If on the other hand you had edited the .profile in your terminal window or had terminal windows open previously and wanted the changes in them, then you need to simply type . .profile to load them. – tokkov Sep 21 '11 at 15:53
I can't make it work. I added a file .bash_profile under /Users/Anders, with the line export AXF_DIR=/Applications/Antenna/AHFormatterV53, but the ant process still doesn't find a variable AXF_DIR... Also, I tried the set command in Terminal, and got a lot of info, but nothing about this variable. Note that I also restarted the system just to be sure, and I also started a new Terminal window... – Anders Svensson Sep 21 '11 at 20:35
Try naming it just .profile. I just peeked at a machine I recently bought and they seem to be using .profile these days and not .bash_profile – tokkov Sep 23 '11 at 13:20
feedback

Here's a bit more information specifically regarding the PATH variable in Lion OS 10.7.x:

If you need to set the PATH globally, the PATH is built by the system in the following order:

  1. Parsing the contents of the file /private/etc/paths, one path per line
  2. Parsing the contents of the folder /private/etc/paths.d. Each file in that folder can contain multiple paths, one path per line. Load order is determined by the file name first, and then the order of the lines in the file.
  3. A setenv PATH statement in /private/etc/launchd.conf, which will append that path to the path already built in #1 and #2 (you must not use $PATH to reference the PATH variable that has been built so far). But, setting the PATH here is completely unnecessary given the other two options, although this is the place where other global environment variables can be set for all users.

These paths and variables are inherited by all users and applications, so they are truly global -- logging out and in will not reset these paths -- they're built for the system and are created before any user is given the opportunity to login, so changes to these require a system restart to take effect.

BTW, a clean install of OS 10.7.x Lion doesn't have an environment.plist that I can find, so it may work but may also be deprecated.

link|improve this answer
Thank you very much for this explanation! Very useful! – skiabox Apr 26 at 20:36
feedback

What worked for me is to create a .launchd.conf with the variables I needed:

setenv FOO barbaz

This file is read by launchd at login. You can add a variable 'on the fly' to the running launchd using:

launchctl setenv FOO barbaz`

In fact, .launchd.cond simply contains launchctl commands.

Variables set this way seem to be present in GUI applications properly.

If you happen to be trying to set your LANG or LC_ variables in this way, and you happen to be using iTerm2, make sure you disable the 'Set locale variables automatically' setting under the Terminal tab of the Profile you're using. That seems to override launchd's environment variables, and in my case was setting a broken LC_CTYPE causing issues on remote servers (which got passed the variable).

(The environment.plist still seems to work on my Lion though. You can use the RCenvironment preference pane to maintain the file instead of manually editing it or required Xcode. Still seems to work on Lion, though it's last update is from the Snow Leopard era. Makes it my personally preferred method.)

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.