0

I'm working in Ubuntu Bionic Docker image and am in need of the libcxx-serial-dev package, but this only seems to be available in the Debian repos. How do I go about installing this package on Ubuntu 18.04?

I tried adding the following to my /etc/apt/sources.list:

deb http://deb.debian.org/debian main

but then I couldn't find the public key for the repo.

Does anyone know how to solve this?

2 Answers2

3

You might want to use https://packages.ubuntu.com/focal/amd64/libcxx-serial-dev/download instead

or use source package from main repository https://gitlab.com/leamas/cxx-serial and build it for your ubuntu

the build process is described in the ReadMe file of the official repository

Jan Myszkier
  • 1,243
0

As it turns out, this package just isn't available in the Bionic Beaver repos, but it is however in the Focal Fossa repos. Updating my Docker image to ubuntu:focal solved my issue.