Uninstall python 3.2 on mac os x 10.6.7

前端 未结 3 1069
暗喜
暗喜 2020-12-29 12:44

According to the documentation from python.org, python 3.2 install on mac os requires an upgrade to tcl/tk 8.5.9 (for use of IDLE). In my haste, I have done both. Now my fri

相关标签:
3条回答
  • 2020-12-29 13:00

    Since Python installs using a package manager, you can use Suspicious Package to look at the install script and where everything is installed.

    Be aware this is for demonstration purposes only. My environment is OSX 10.6.8 and am uninstalling python-3.2.2-macosx10.6.dmg.

    sudo rm -Rfv /Library/Frameworks/Python.framework/ /Applications/Python\ 3.2/
    
    cd /usr/local/bin/
    
    sudo rm -fv 2to3 2to3-3.2 idle3 idle3.2 pydoc3 pydoc3.2 python3 python3-32 python3-config python3.2 python3.2-32 python3.2-config python3.2m python3.2m-config pythonw3 pythonw3-32 pythonw3.2 pythonw3.2-32 /Developer/Documentation/Python/Reference\ Documentation\ 3.2
    
    0 讨论(0)
  • 2020-12-29 13:10

    just uninstall 3x version of python if you have already installed it. Eclipse has that option when you click "see whats already installed". Install later 2.7 version. It works for me on my OS X 10.9.2 with Eclipse Juno.

    0 讨论(0)
  • 2020-12-29 13:14

    I did the same (3.2 on a mac 10.6) and: -Moved both the Python 3.2 folder and the ActiveState ActiveTcl folder from the Applications Folder to the Trash. -Moved the Python.framework folder from the Library/Frameworks folder to the Trash.

    Running System profiler shows only the 2.6 version of Python.

    Marcos

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