Uninstall python.org version of python2.7 in favor of default OS X python2.7

前端 未结 1 1139
梦毁少年i
梦毁少年i 2021-02-02 17:06

I\'m running OS X 10.8.2 and I believe that by default this comes with Python 2.7.3. I previously had Python 2.7.2 installed from python.org and would like to scrap it to basica

相关标签:
1条回答
  • 2021-02-02 17:32

    There are three things making up the python.org python install which need to be removed. These steps worked for me:

    1. Remove the actual Python install:

      rm -rf /Library/Frameworks/Python.framework
      
    2. Remove the Python.org extra applications by deleting the folder at /Applications/Python 2.7:

      rm -rf /Applications/Python\ 2.7
      
    3. Remove the symlinks to the python executables from your /usr/local/bin directory:

      find /usr/local/bin -type l -and -lname "/Library/Frameworks/Python.framework*" -delete
      
    4. Remove or comment out these lines from your bash startup script (either ~/.profile or ~/.bash_profile):

      # Setting PATH for Python 2.7
      # The orginal version is saved in .profile.pysave
      PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
      export PATH
      

    Some of these steps may require super-user privileges via e.g. sudo. Once this is done, you should have only the original Mac.

    Based on documentation at http://docs.python.org/2/using/mac.html

    0 讨论(0)
提交回复
热议问题