我正在尝试在我的ubuntu 14.04服务器上安装Clickhouse。
我已经使用yandex repo/配置了sources.list
deb http://repo.yandex.ru/clickhouse/trusty stable main我已经运行了sudo apt-get update
我最终得到了这个错误。
user@server:# sudo apt-get install clickhouse-client clickhouse-server-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package clickhouse-client
E: Unable to locate package clickhouse-server-common怎么了?
发布于 2017-02-14 22:36:49
尝尝这个
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E0C56BD4
sudo apt-get update
sudo apt-get install clickhouse-client clickhouse-server-common如果密钥过期使用
wget -q -O - https://repo.yandex.ru/clickhouse/CLICKHOUSE-KEY.GPG | apt-key add -发布于 2020-03-26 23:05:17
报价https://clickhouse.tech/docs/en/getting_started/install/
推荐使用Debian或Ubuntu官方预编译的deb包。
要安装官方包,请将Yandex存储库添加到/etc/apt/Soures.list或单独的/etc/apt/Soures.list.d/clickhouse.list.list文件中:
deb http://repo.clickhouse.tech/deb/stable/ main/https://stackoverflow.com/questions/42210873
复制相似问题