I followed this post's advice and now I can no longer get python working on my computer. What is the safest way to removing Python framework files that are located in different place than Brew installs
When typing "brew search python" into the terminal it says both python and python3 are installed. However, my terminal doesn't recognize any python commands or let my reinstall python
the below is my bash profile
# Setting PATH for Python 3.5
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"
export PATH
# 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