El terminal en mi Mac ya no funciona después de instalar Python & Sublime Text

1

Estaba intentando instalar Python3, y Sublime Text 3 para aprender y ejecutar Python. Desafortunadamente, vi algunos videos en youtube e intenté seguir sus instrucciones, hice algo con mi Terminal y ahora no funciona en absoluto . Por favor, explícame y muéstrame cómo solucionarlo.

En la Terminal se muestra:

Last login: Sun May  1 18:44:16 on ttys000
Lances-MacBook-Pro:~ lancedang$ touch
-bash: touch: command not found
Lances-MacBook-Pro:~ lancedang$ python
-bash: python: command not found
Lances-MacBook-Pro:~ lancedang$ python3
-bash: python3: command not found
    
pregunta LDbunny 02.05.2016 - 03:56

1 respuesta

1

Parece que tu variable de entorno PATH se ha cambiado en algún lugar.

Escriba el siguiente comando en el indicador de su terminal:

echo 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:~/bin:$PATH' >> ~/.bash_profile

Salga del terminal y del shell escribiendo exit y cerrando la aplicación del terminal. Relanzamiento.

Todo debería estar funcionando ahora.

    
respondido por el Allan 02.05.2016 - 04:36

Lea otras preguntas en las etiquetas