I have researched this for hours to no avail.
I think I deleted my directory at /usr/bin/python when I installed python 3 because I get this error: -bash: /usr/bin/python: No such file or directory.
I've tried sudo ln -s /usr/bin/python2.7 /usr/bin/python
, and that gives me ln: /usr/bin/python: File exists
However, it still doesn't permanently install a directory in /usr/bin/python. How do I permanently restore this directory?
I'm on a mac.
Thanks!
/usr/bin/python
should be a file, not a directory. What does runningls -l /usr/bin/python
output? – Kingfish