简体   繁体   中英

unable to install SQL server on ubuntu 20.04

when i tried to install sql server 2017 it show: enter image description here mssql-server: Depends: libssl1.0.0 but it is not installable

i need some help

I had the same problem and this guide from github helped me:

Add 18.04's main repository using ->

echo "deb http://security.ubuntu.com/ubuntu bionic-security main" | sudo tee -a /etc/apt/sources.list.d/bionic.list

Update repository cache and check if libssl1.0-dev is now available:

sudo apt update
apt-cache policy libssl1.0-dev

Install libssl1.0-dev:

sudo apt-get install libssl1.0-dev

github link

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM