Ubuntu

我正在嘗試安裝 Eclipse,但是當我嘗試執行 ./configure 時它不起作用

  • August 15, 2015

所以我試圖通過觀看影片通過終端安裝 Eclipse,但是當我嘗試執行時,./configure我收到一條消息說

bash: ./configure: No such file or directory   

我環顧四周,然後意識到與我正在觀看的影片不同,eclipse 文件夾中沒有配置。eclipse文件夾中顯示的文件是

artifacts.xml  
dropins  
eclipse.ini  
icon.xpm  
plugins 
configuration  
eclipse  
features     
p2        
readme 

所以我想知道我應該從這裡做什麼來安裝eclipse。我真的很感激任何可以幫助我完成安裝這個程序的人。

謝謝,新星

Eclipse 不需要安裝。只需執行

./eclipse

文件夾內。就這樣。


或者創建桌面文件。在我的範例中,Eclipse 文件夾位於/opt/eclipse

nano ~/.local/share/applications/eclipse.desktop

並添加以下行

[Desktop Entry]
Type=Application
Name=Eclipse 
Comment=Eclipse Integrated Development Environment 
Icon=/opt/eclipse/icon.xpm
Exec=/opt/eclipse/eclipse
Terminal=false
Categories=Development;IDE;Java;     
StartupWMClass=Eclipse

引用自:https://unix.stackexchange.com/questions/223434