11

While following this tutorial when executing

sudo apt-get install -y mssql-server

I get in the output the next error:

The following packages have unmet dependencies:
 mssql-server : Depends: libjemalloc1 but it is not installable
                Depends: libssl1.0.0 but it is not installable

what should I do?

Fito
  • 700

1 Answers1

12

I based my answer on this one for 18.10. Install these packages:

libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb and libjemalloc1_3.6.0-11_amd64.deb

with the commands:

sudo dpkg -i libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb    
sudo dpkg -i libjemalloc1_3.6.0-11_amd64.deb 
luilver
  • 33
  • 4
Fito
  • 700