I'd like to install a binary for only my user, because I don't have root, and therefore don't have access to /usr/bin
. I've tried ~/bin
, and it can't find the binary. I'm on Mac OS 10.6.7. Is there any other binary folder that can usually be user-modified, or any way to get it to recognize ~/bin
?
My .profile
:
# Setting PATH for Python 2.7
# The orginal version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
~/bin
(or preferably~/.bin
) to the list of places that it looks for binaries in? – tkbx Jan 19 '13 at 17:26~/.bin
is preferable, as~/bin
is fairly standard and even configured by default in some operating systems. – jordanm Jan 19 '13 at 17:48