如何在 Eclipse 中恢复软件更新
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3855814/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to revert a software update in Eclipse
提问by Matthieu Napoli
I think the last update of an Eclipse plugin is causing errors, how can I revert to the version previous to the latest update ?
我认为 Eclipse 插件的上次更新导致错误,如何恢复到最新更新之前的版本?
(the plugin is PHPsrc : http://www.phpsrc.org/)
(插件是 PHPsrc : http://www.phpsrc.org/)
Thanks
谢谢
回答by Ladlestein
To revert, select menu Help > About Eclipse.
要恢复,请选择菜单 Help > About Eclipse。
In the dialog box, click the Installation Details button. Then select the Installation History tab.
在对话框中,单击安装详细信息按钮。然后选择安装历史选项卡。
Now you'll see a list of previous configurations; you can select one of them, and the Revert button will be enabled. Now you can click it to revert to the selected configuration.
现在您将看到以前配置的列表;您可以选择其中之一,然后将启用“还原”按钮。现在您可以单击它以恢复到选定的配置。
回答by MarkA
I had a similar problem today where an update to Eclipse caused Eclipse to stop working, but found a different solution.
我今天遇到了类似的问题,其中对 Eclipse 的更新导致 Eclipse 停止工作,但找到了不同的解决方案。
In my case I applied some reccomended updates, but the Eclipse restart failed. Looking in the log file, I could see that Eclipse would not start because of a new error.
就我而言,我应用了一些推荐的更新,但 Eclipse 重启失败。查看日志文件,我可以看到 Eclipse 由于新错误而无法启动。
I read around (including this question, and the comment from @Denis ).
我四处阅读(包括这个问题,以及@Denis 的评论)。
This lead me to running
这让我开始跑步
eclipse -clean
This took longer than usual to start, but it did start, and I have been able to restart once more, so I think I am up and running once more.
这比平常花费了更长的时间来启动,但它确实启动了,而且我已经能够再次启动,所以我想我又一次启动并运行了。
Back posting to here in case it helps someone else !
回贴到这里,以防它帮助别人!