Harsh Patel
Harsh Patel

Reputation: 6840

Error while installing ClickHouse DB Ubuntu 16.04 (64 bit)

I followed this link to install ClickHouse DB: https://clickhouse.yandex/#quick-start

I got an error while running this command: sudo apt-get install clickhouse-server-common clickhouse-client -y

Error:

Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: clickhouse-client : Depends: clickhouse-server-base (= 1.1.54236) but it is not going to be installed clickhouse-server-common : Depends: clickhouse-server-base (= 1.1.54236) but it is not going to be installed E: Unable to correct problems, you have held broken packages.

Upvotes: 0

Views: 1142

Answers (1)

Slach
Slach

Reputation: 2498

try use following commands

apt-get purge -y clickhouse*
apt-get install -y clickhouse-server-common
apt-get install -y clickhouse-client

Upvotes: 0

Related Questions