How can I correct the dependencies

0

I am trying to do the next installation sudo apt -f install ngrok-client, but it generates an error with some dependencies, what are the correct commands for me to install and update the dependencies that it needs. In the image is the error message that does not allow me to do the installation. I am using Ubuntu 16.04 Xenia to 64 bits.

    
asked by García Henry 15.11.2017 в 02:50
source

3 answers

1

Try using the apt-get command, as the error recommends:

$ sudo apt-get -f install ngrok-client
    
answered by 15.11.2017 в 03:13
1

First Update and Upgrade

$ sudo apt update 
$ sudo apt upgrade 

Then try the reinstallation:

$ sudo apt-get install --reinstall ngrok-client

If you have dependency errors

$sudo apt -f install
    
answered by 15.11.2017 в 14:48
0

My solution was to eliminate the dependencies of sqlite3 and sqlite3, run the commands:

$ sudo apt update $ sudo apt upgrade

The pending packages were updated and it was working correctly.

    
answered by 15.11.2017 в 20:11