我无法安装mssql-tools
sudo apt-get install mssql-tools
它给出了错误:
E: unable to locate
我怎样才能解决这个问题?
答案1
您需要确保为其设置了 MSSQL 存储库mssql-tools
,然后安装它。 没有任何MSSQL 的内容可立即使用。
注意事项:
截至本文发布时,16.04 是唯一受支持的 Ubuntu 版本。
自此之后,只有 LTS 可以保证工作,临时版本也可能工作,但 LTS 是首选环境。
(来源)
托马斯·沃德的说明:这些是来自微软的,我并不一定认可他们推荐的所有程序。
在 Ubuntu 上安装工具
进入超级用户模式
sudo su
导入公共存储库 GPG 密钥:
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
注册 Microsoft Ubuntu 存储库:
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/msprod.list
退出超级用户模式:
exit
更新源列表并运行安装命令:
sudo apt-get 更新 sudo apt-get 安装 mssql-tools