I am trying to install Lasso server on Gallium OS using
sudo apt-get install lasso-instance-manager
and I am getting this error:
The following packages have unmet dependencies: lasso-instance-manager :
Depends: libicu52 but it is not installable
Depends: libmysqlclient18 but it is not installable
Depends: libzip2 but it is not installable
Does anyone know how to fix this? I have tried a lot of things from google searches about fixing these types of errors, however, none seem to work. Some of the things I've tried are
sudo apt-get upgrade
sudo apt-get update
sudo apt-get install -f
All of the update seem to work fine, however, I'm still getting the unmet errors.
I was able to find a fix for this. What did it was just manually installing the dependencies. I was able to find the deb packages in Ubuntu's archives. I then downloaded and installed all the missing dependencies and was able to get lasso server up and running.
Related
I am trying to run MiniKF on my device which requires me to install vagrant. I am running Ubuntu 19.04. I downloaded vagrant, but when I try to install it using sudo apt-get install vagrant I get the following message:
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:
vagrant : Depends: bsdtar but it is not going to be installed
Depends: ruby-net-scp (>= 1.1.0) but it is not going to be installed
Depends: ruby-net-sftp but it is not going to be installed
Depends: ruby-net-ssh (>= 1:2.6.6) but it is not going to be installed
Recommends: vagrant-libvirt but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
I have tried using sudo apt-get update , sudo apt-get install -f , tried editing the /var/lib/dpkg/status file, tried removing the files with sudo apt-get remove and more but nothing is working for me. Any ideas would be greatly appreciated.
So some very elementary things to try first:
sudo apt clean && sudo apt --fix-missing && sudo dpkg --configure -a
This is all pretty standard stuff to try first - this would attempt to clean any leftover resources and cache materials, then attempt to fix any broken or missing dependencies, then check for any unfinished or otherwise weird installation issues for other packages that didn't configure themselves all the way / correctly.
After that, if you still have the same issue, I'm assuming it's due to the fact that Ubuntu 19.04 is already end of life, and the repositories may not (read: definitely do not) have all the same packages that something that is within life like Ubuntu 20.04 has. Even if the above happens to fix your problem, you should look into upgrading to 20.04 whenever possible, as this won't be your first problem that crops up regarding updates or installation in the near future.
I run sudo apt-get install python3-venv then I get.
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:
python3-venv : Depends: python3.6-venv (>= 3.6.5-2~) but it is not going to be installed
Depends: python3 (= 3.6.5-3) but 3.6.7-1~18.04 is to be installed
E: Unable to correct problems, you have held broken packages.
I'm pretty sure trying to reinstall Python is a bad thing, so I got nowhere else to go.
python -V returns 2.7.17and python3 -V returns 3.6.9.
I have ran the following to try and update node but get the following output:
$ sudo apt-get install -y nodejs
sudo: unable to resolve host phil: Resource temporarily unavailable
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-image-extra-4.10.0-33-generic : Depends: linux-image-4.10.0-33-generic but it is not going to be installed
linux-image-generic : Depends: linux-image-4.10.0-33-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
I am really confused with this as I do not understand what I should do. Any advice to resolve this and update my node to version 8?
I solved exactly the same problem with unmet dependencies.
Run:
sudo apt-get -f install
Firstly, you must solve all the problems related to unmet dependencies in order to install something using apt-get install
Then, I suggest to install NodeJS using NVM, this link could help you:
https://www.digitalocean.com/community/tutorials/como-instalar-node-js-en-ubuntu-16-04-es
I'm trying to install Cairo on Ubuntu 14.04 64 Bit but it shows unmet dependencies. I'm using following command to install cairo
sudo apt-get install libcairo2-dev
Above command returning following error:
The following packages have unmet dependencies:
libcairo2-dev : Depends: libxext-dev but it is not going to be installed.
Depends: libglib2.0-dev but it is not going to be installed.
E: Unable to correct problems, you have held broken packages.
As per error, I tried to install "libxext-dev" package using "sudo apt-get install libxext-dev" command and now again got error for unmet dependency of following package:
libxext6
ERROR: Depends: libxext6 (= 2:1.3.2-1) but 2:1.3.2-1ubuntu0.0.14.04.1 is to be installed
So now I tried to install "libxext6" but it's already installed. Not sure then why "sudo apt-get install libxext-dev" says unmet dependencies error.
Please help me to resolve out this issue if anybody know how to resolve out this issue.
Thanks
I did the following to install blender:
sudo add-apt-repository ppa:irie/blender
sudo apt-get update
sudo apt-get install blender
And got this message about 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:
blender : Depends: libboost-locale1.54.0 but it is not installable
Depends: libopencolorio1 but it is not installable
Depends: libspnav0 (>= 0.2.1) but it is not installable
E: Unable to correct problems, you have held broken packages.
I have tried installing each of the 'not installable' packages and their dependencies manually, but it did not solve the problem. Any help is highly appreciated, thank you.
I managed to solve the issue through Synaptic Package Manager. I had tried reinstalling libboot-locale1.54.0 from the terminal and everything seemed to go fine, but still got the same error when installing Blender. Then out of desperation I opened Synaptic Package Manager and did a reinstall of the same package and to my surprise it solved the issue.