如何卸载 Google App Engine SDK [英] How Do I uninstall Google App Engine SDK

查看:35
本文介绍了如何卸载 Google App Engine SDK的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

自从我在 Mac (OS X Lion) 上安装了 Google App Engine Launcher 后,我就一直从 Google App Engine SDK 收到有关自动更新的定期警报,但我一直无法弄清楚如何卸载/禁用它.

Ever since I installed the Google App Engine Launcher on my Mac (OS X Lion), I've been getting periodic alerts from the Google App Engine SDK about auto-updating, and I haven't been able to figure out how to uninstall/disable it.

我看过如何从我的 Mac 中删除 Google App Engine SDK?,但我找不到答案中列出的文件.

I've looked at How do I delete the Google App Engine SDK from my mac? , but I couldn't find the file that was listed in the answer.

还有其他建议吗?

推荐答案

如果您只想禁用 App Engine 自动更新功能,请执行以下操作 (来源):

If you only wish to disable the the App Engine autoupdate feature, do the following (source):

要么删除文件:

~/Library/Preferences/com.google.Keystone.Agent.plist

或者给它添加一个新的Disabled属性(如果你想保留文件):

Or add a new Disabled property to it (if you wish to keep the file):

<key>Disabled</key>
<true/>

如果您希望完全卸载 Google 软件更新,请执行以下操作(来源):

If you wish to uninstall Google Software Update completely, do the following (source):

  1. 卸载您当前安装在计算机上的所有 Google 程序.

  1. Uninstall any Google programs you currently have installed on your computer.

在 Finder 中转至应用程序 > 实用程序,打开终端窗口.

Open a Terminal window by going to Applications > Utilities in Finder.

可以为特定用户或整个系统卸载 Google 软件更新.在终端中粘贴以下命令之一:

Google Software Update can be uninstalled for a specific user or for your whole system. Paste one of the following commands in Terminal:

为特定用户卸载:

~/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/Resources/install.py --uninstall

全系统卸载:(需要root权限):

Uninstall for the whole system: (needs root access):

sudo/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/Resources/install.py --uninstall

注意上面列出的两个命令应该在一行上

当然,您可以删除您选择用于存储 App Engine Python SDK 的目录.

Of course then it goes without saying that you can delete the directory that you chose to store the App Engine Python SDK.

另请注意,如果您的 .plist 文件是二进制格式,您需要将其转换为 XML,然后在完成后返回(来源).

Also note that if your .plist file is in binary format, you'll need to convert it to XML and then back when you're done (source).

从二进制到 XML:

plutil -convert xml1 some_file.plist

从 XML 到二进制:

From XML to binary:

plutil -convert binary1 some_other_file.plist

这篇关于如何卸载 Google App Engine SDK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆