Recientemente actualicé Python (a través de archivos .dmg descargados). Antes, mi $ PATH se veía así:
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
Ahora cuando ejecuto el comando:
$ echo $PATH | tr ':' '\n'
se agregan las siguientes dos líneas:
/Library/Frameworks/Python.framework/Versions/2.7/bin
/Library/Frameworks/Python.framework/Versions/3.4/bin
He notado que mi ~ / .bash_profile tiene solo 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 perfil ~ / .bash?
¿Por qué estos duplicados se agregarían a ~ / .bash_profile en primer lugar?