卸载旧版本Python的安全方法
我想更新 Mac 上的 Python 框架并删除旧版本 但我不确定是否安全 有
rm -fr /Library/Frameworks/Python.framework/Versions/2.4 - 2.5 - 2.6 -3.0 etc.
什么建议吗?
I want to update my Python framework on Mac and delete the old versions
but I am not sure if is safe to
rm -fr /Library/Frameworks/Python.framework/Versions/2.4 - 2.5 - 2.6 -3.0 etc.
Any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,很安全。
Mac 的系统 python 位于
/System/Library/...
中。从 python.org 下载并安装的 .dmg 位于
/Library/...
中。不要删除 /System 的,但 /Library 是用户安装的,所以删除它们应该是安全的。
Yes, it's safe.
The Mac's system python's are in
/System/Library/...
..dmg's downloaded and installed from python.org are placed in
/Library/...
.Don't delete the /System ones, but the /Library ones are user installed, so they should be safe to delete.
不,这不安全。一般来说,不要乱用操作系统附带的 Python,许多系统工具都依赖于特定版本的 Python。
No, it's not safe. Generally, don't mess with the Python that comes with your OS, many system tools depends on having a specific version of Python.