我正在尝试在 Windows 10 上使用 ubuntu 控制台安装 eclipse。我使用的是 20.04.4 LTS 版本(Focal Focus)
现在我已经尝试了命令 sudo apt install eclipse 得到错误包'eclipse'没有安装候选
所以我决定走另一条路线,我下载了 eclipse-inst-jre-linux64
然后运行命令 ./eclipse-inst
并得到日志错误
Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.swt.widgets.Display
at org.eclipse.oomph.setup.internal.installer.SetupInstallerPlugin$Implementation.start(SetupInstallerPlugin.java:133)
at org.eclipse.osgi.internal.framework.BundleContextImpl$2.run(BundleContextImpl.java:813)
at org.eclipse.osgi.internal.framework.BundleContextImpl$2.run(BundleContextImpl.java:1)
at java.base/java.security.AccessController.doPrivileged(Unknown Source)
at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:805)
... 32 more
问题是所有示例都是针对 Linux 上的 Ubuntu,而不是通过 WSL 在 Windows 上的 Ubunto。
我已经在 Windows 11 的 WSL2/Ubuntu 下成功安装了 Linux 版本的 Eclipse。
首先,作为故障排除测试,您应该尝试一些更轻量级的东西。
我猜你也会得到一个错误。
您没有提及您的 Windows 版本或 WSL 版本,但重要的是要注意 Windows 10 WSL 不包括开箱即用运行任何Linux GUI 应用程序的能力。请参阅如何在超级用户上使用适用于 Linux 的 Windows 子系统运行 GUI 应用程序。输出第一行中的
DISPLAY
错误意味着您可能试图在未在 WSL 上配置 GUI 的情况下运行它。在带有 WSL2/WSLg 的 Windows 11 下,Eclipse 安装几乎可以正常工作。对话框大小不合适(并且必要的按钮位于窗口“外部”)存在一些小问题,但我能够解决它们。
在 Windows 10 下,您需要配置第三方 X 服务器或运行 XRDP,如链接答案中所述。对于 Windows 10 上的 WSL1,一个
export DISPLAY=:0
就足够了。对于 WSL2,您可能需要类似的东西export DISPLAY="$(hostname).local:0"
。