0

Wonder if anyone has tried the Cassandra-cpp-driver on Alpine? I found this package: https://pkgs.alpinelinux.org/package/edge/testing/x86/cassandra-cpp-driver

But when I tried "apk add cassandra-cpp-driver", it cannot find it

ERROR: unsatisfiable constraints:
  cassandra-cpp-driver (missing):
    required by: world[cassandra-cpp-driver]

Thanks!

β.εηοιτ.βε
  • 33,893
  • 13
  • 69
  • 83
FrankC
  • 23
  • 3

1 Answers1

0

Since this is a 'testing' package, you need to install it like this

apk add cassandra-cpp-driver --update-cache --repository \
    http://dl-3.alpinelinux.org/alpine/edge/testing/

See https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management#Add_a_Package

Jakub Jirutka
  • 10,269
  • 4
  • 42
  • 35
Harald Nordgren
  • 11,693
  • 6
  • 41
  • 65
  • **Do NOT use --allow-untrusted!** This option skips signature verification, so it’s insecure. It’s not just stupid, but also pointless, because dl-3.alpinelinux.org is an official Alpine repository, so use has required keys in the system. – Jakub Jirutka Mar 12 '17 at 19:09