我的 Eclipse 安装程序已将 Eclipse 安装在 中~/eclipse/cpp-oxygen/eclipse
。但我在 Unity 菜单中没有它的图标,并且命令提示符看不到 eclipse 二进制文件。
我已经入驻PATH
( .profile
不确定这是否是正确的地方)
PATH="$PATH:$JAVA_HOME/bin:~/eclipse/cpp-oxygen/eclipse"
现在我运行 Eclipse 时收到错误:
The Eclipse executable launcher was unable to locate its
home directory.
我怎么解决这个问题?
答案1
我按照以下步骤修复了图标问题。
步骤 1. 打开终端并运行命令
vim ~/.local/share/applications/eclipse.desktop
第 2 步:将以下内容复制并粘贴到文件中并保存
Name=Eclipse JEE Oxygen
Type=Application
Exec=/home/tungbui/eclipse/java-oxygen/eclipse/eclipse
Terminal=false
Icon=/home/tungbui/eclipse/java-oxygen/eclipse/icon.xpm
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE;
Name[en]=Eclipse
记得替换 Exec 和 Icon 的位置。希望有帮助。
参考:https://websiteforstudents.com/how-to-install-eclipse-oxygen-ide-on-ubuntu-167-04-17-10-18-04/