Liclipse (Eclipse) Installation on Ubuntu
5 March, 2021 by
Liclipse (Eclipse) Installation on Ubuntu
Administrator
| No comments yet


 

We will show you in this Tutorial how to Install LiClipse, the most popular Eclipse IDE.

LiClipse is the lightweight version of the most popular Eclipse IDE and it includes PyDev and Egit by default which will help python/django developers

The problem is that we cannot find this version in Ubuntu Software Center but we can install it easily if we follow the steps below

You can also watch this video that succinctly summarize the steps of this tutorial

Dowload LiClipse

Download latest version of LiClipse from the official website, for my case I choose LiClipse 3.0.1 for Linux (64 bits).

Install LiClipse

Go to your Download folder and extract Liclipse file:

#sudo tar xvzf liclipse_3.0.1_linux.gtk.x86.tar.gz

Move the extracted folder to /opt folder using the command

#sudo mv liclipse /opt

Now create a shortcut of LiClipse in the applications folder:

#sudo ln -s /opt/liclipse/LiClipse /usr/bin/liclipse

We have now installed LiCipse in our system. But we need to create a launcher for easier access. Paste the following command in terminal to create the launcher

#sudo nano /usr/share/applications/liclipse.desktop

Paste the following content in the file. NB: in my case I used the version 3.0.1, you should use the version you are working with.

[Desktop Entry]
Version=3.0.1
Name=LiClipse
Comment=IDE for Python/Django developers
Exec=env UBUNTU_MENUPROXY=0 /opt/liclipse/LiClipse
Icon=/opt/liclipse/icon.xpm
Terminal=false
Type=Application
Categories=Utility;Application;Development;IDE

Rest of the content should not be changed. Save this file :

CTRL+O : To save the changes.
CTRL+X : To exit

Now have installed LiClipse successfully. You can now launch LiClipse from the Ubuntu dash menu

 

Sign in to leave a comment