我有java 8。我已经安装了eclipse最新版本,因为它支持ARM64芯片- https://www.eclipse.org/downloads/packages/release/2021-12/r/eclipse-ide-cc-developers,以及当我尝试添加流氓- https://update.rascal-mpl.org/stable/时。
月食抛出一个错误-
Cannot complete the install because one or more required items could not be found.
Software being installed: The Rascal MetaProgramming Language 0.18.3 (rascal-feature.feature.group 0.18.3)
Missing requirement: rascal_eclipse 0.18.3 (rascal_eclipse 0.18.3) requires 'osgi.bundle; org.eclipse.core.runtime [0.0.0,3.19.0)' but it could not be found
Cannot satisfy dependency:
From: The Rascal MetaProgramming Language 0.18.3 (rascal-feature.feature.group 0.18.3)
To: org.eclipse.equinox.p2.iu; rascal_eclipse [0.18.3,0.18.3]有人能引导我解决这个错误吗?这是因为安装了最新版本的Eclipse吗?
发布于 2022-01-24 12:42:58
错误的关键部分是
需要“osgi.bundle;org.eclipse.core.runtime [0.0.03.19.0]”
这就是说org.eclipse.core.runtime插件的版本小于3.19.0是必需的。
Eclipse的最后一个版本是Eclipse4.16 (2020-06)。所以它不会安装在ARM64发行版上。必须更新Rascal插件才能在任何新版本上运行。
Eclipse2020-06是最后一个只需要Java 8运行的Eclipse,这可能与此有关。
https://stackoverflow.com/questions/70833864
复制相似问题