Reputation: 65
I am on Ubuntu 14.04 LTS and alothough I'm not entirely new to Linux, I'm a complete newbie to using Codelite on linux. I've got codelite up and running on Windows with no problems at all. However, its installation on Ubuntu installation seems to have gone awry somewhere. Because, whenever I fire up Codelite on Ubuntu, it starts alright (seemingly) and then if I try to create a new workspace or even a new project, it simply closes down without any alerts or messages whatsoever. I've searched on the internet about this problem but it seems that nobody has this kind of problem. So either I'm doing something basically stupid or my Ubuntu is not well. Either way, I will be very grateful if someone could guide me and set me straight. Thanks in advance.
Upvotes: 4
Views: 4116
Reputation: 567
That worked for me:
Download the .deb file from here.
Run sudo dpkg -i codelite-x.y.z.deb
(this install the package)
Run sudo apt-get install -f
(this fixes all dependency issues)
Thanks to xuancong84, instruction took from this issue.
Upvotes: 0
Reputation: 2400
Its not you. Its Ubuntu's fault. The codelite provided by Ubuntu is very ancient (2.8). The current version is 6.1.1
To fix your problem:
sudo aptitude purge codelite codelite-plugins
Note that We filed a bug to Ubuntu to remove this broken package... but nothing was done to fix this
Upvotes: 8