2

Possible Duplicate:
Where does $PATH get set in OS X 10.6 Snow Leopard?

I need to get a command line program working on my Mac, I have downloaded the executable binaries... not even quite sure where to put them, also need to do whatever the Mac equivalent of adding them to the windows path environment variable is?

The program is blast version 2.2.24 (genetics software)

Kirt
  • 7,561

1 Answers1

3

You add the path to the software in your .bash_profile or .bashrc in your home directory. Open Terminal and do the following:

cd ~
vim .bash_profile
PATH=$PATH:path_to_software
export PATH

close the file and log out, then log back in and you should be ok.

Madison S
  • 1,480