如何在 Mac OSX 10.6 上卸载 wxpython 2.8
在继续之前,我的机器和安装的软件包的一些详细信息:
Mac OSX 版本:10.6.6 Python版本:Activestate Python 2.7.1 wxpython 版本:wxpython 2.8(使用 Carbon API,因此仅限于 32 位模式 arch)
我使用其 .dmg 安装程序文件从 wxpython 网站安装了 wxPython2.8-osx-unicode-py2.7。该软件包使用 Carbon API,因此仅限于 32 位模式。我必须使用“arch -i386”编写应用程序才能导入wx,并且由于此限制,我无法导入某些其他包,例如“MySQLdb”,这些包在32位模式下不可用。所以,我最好的选择是卸载wxpython 2.8并安装wxpython 2.9,因为2.9版本使用Cocoa API,它同时支持32位和64位。
我不知道如何在我的 Mac OSX 上卸载 wxpython2.8。有人可以帮我吗?
Some details of my machine and installed packages before proceeding further:
Mac OSX version: 10.6.6
Python version: Activestate Python 2.7.1
wxpython version: wxpython 2.8 (uses Carbon API hence limited to 32-bit mode arch only)
I installed wxPython2.8-osx-unicode-py2.7 from wxpython website using their .dmg installer file. This package uses the Carbon API and hence is limited to 32-bit mode only. I have to write my applications using "arch -i386" in order to import wx, and due to this limitation I am unable to import certain other packages likes "MySQLdb" which are not available in 32-bit mode. So, my best option is to uninstall wxpython 2.8 and install wxpython 2.9 because version 2.9 uses Cocoa API which has both 32-bit and 64-bit support.
I don't know how to uninstall wxpython2.8 on my Mac OSX. Can anyone please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 wxPython 的 .dmg,会发现有一个 uninstall_wxPython.py 卸载脚本。只需将其拖到桌面并在终端中运行 python ~/Desktop/uninstall_wxPython.py 即可。
If you look in the .dmg for wxPython, there is an uninstall_wxPython.py unininstall script. Just drag it to your desktop and run
python ~/Desktop/uninstall_wxPython.py
in a terminal.