-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
bej
4 comments · 1 points
-
dimithri
5 comments · 1 points
-
-
Popular Threads
-
Windows 7: How to Prevent the Mouse from Waking your PC
10 hours ago · 1 comment
-
Outlook 2010: Turn Off Attachment Preview
1 week ago · 1 comment
-
Gmail: How to Send SMS Messages Without Using Email
2 weeks ago · 2 comments
-
Windows 7 – Prevent Live Messenger from Opening at Start Up
1 week ago · 1 comment
-
Symfony: Drop Down List Box Without Submit Button
3 weeks ago · 1 comment
-
Windows 7: How to Prevent the Mouse from Waking your PC
Hope that's not too confusing, I don't think it is.
Thanks for the otherwise helpful information...after adding a ~/.profile I noticed that the PATH in there precedes the other PATH attributes mentioned above so temporarily I've tacked /usr/local/bin on there and it works how I want...but now I have /usr/local/bin on the PATH twice and would like to remedy that.
Cheers
Just what I was looking for. It seemed to be a different way of doing things in Leopard than previous versions.
Cheers,
Mitch
[code]
##
# DELUXE-USR-LOCAL-BIN-INSERT
# (do not remove this comment)
##
echo $PATH | grep -q -s "/usr/local/bin"
if [PATH=$PATH:/usr/local/bin
export PATH
fi
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
# Setting PATH for Python 3.1
# The orginal version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.1/bin:${PATH}"
export PATH
[/code]
This is even though I have Fink installed. I'm sorry to post this so randomly here but I don't know where else to put it.
When I use Fink, it works.... So I don't really know why my profile has this in it. this is in ~/.profile just so you're sure.
If you want to see what echo $PATH does this is it:
[code]
/Library/Frameworks/Python.framework/Versions/3.1/bin:/sw/bin:/sw/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/X11R6/bin
[/code]
So it's not as if I have a problem as of right now. But for some reason, as far as I can see I don't know where to edit my path. I'm sure I'll want to eventually.
Thanks.