Recientemente actualicé Python (a través de archivos .dmg descargados). Antes, mi $PATH tenía este aspecto:
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
Ahora cuando ejecuto el comando
$ echo $PATH | tr ':' '\n'
se añaden las dos líneas siguientes:
/Library/Frameworks/Python.framework/Versions/2.7/bin
/Library/Frameworks/Python.framework/Versions/3.4/bin
Me he dado cuenta de que mi ~/.bash_profile sólo tiene el siguiente contenido:
# Setting PATH for Python 3.4
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH
# Setting PATH for Python 2.7
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
Entonces, si las versiones originales se guardan en sus respectivos perfiles .bash específicos de Python, ¿puedo eliminar este contenido de mi ~/.bash_profile?
¿Por qué se añaden estos duplicados a ~/.bash_profile en primer lugar?