I'm trying to install Codelite on Ubuntu Artful (17.10). I've seen this problem is very common online but I haven't found a fix. Basically when I run sudo apt-get install codelite wxcrafter
I get these unmet dependencies
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
codelite : Depends: libclang1-3.6 (>= 3.2) but it is not installable
Depends: libhunspell-1.3-0 (>= 1.3.3) but it is not installable
Depends: liblldb-3.6 but it is not installable
Recommends: lldb (>= 3.4) but it is not going to be installed
Recommends: nodejs but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Now I've tried to manually install Artful versions of the dependencies (such as libclang1-3.9) but the error remains there. I'm kind of a noob on these sort of things. Is there anyway to like manually install a dependency? (from like a downloaded file?) Or is there any sort of fix to this?
Thank you very much!
Edit: I don't think it's the same as the the question this is marked as duplicate: that's about clashing dependencies this is about missing ones!
sudo apt install nodejs
and thensudo apt install lldb
and thensudo apt install liblldb-3.8
and thensudo apt install libhunspell-1.6-0
and finallysudo apt install libclang1-3.8
? In cases like this, try to install each dependency package manually and if it fails it will tell you why and that will tell you why when installing the original one it could not install dependencies automatically. – marko Apr 04 '18 at 09:10wxcrafter
is not an Ubuntu package as far as I know, so presumably you added some PPA to get it? I don't have any dependency errors when I try installing thecodelite
package on 17.10, so perhaps mixing repositories is causing version clashes. Did you find the post linked by karel any help? – Zanna Apr 06 '18 at 12:17