-
Notifications
You must be signed in to change notification settings - Fork 1
Building on Ubuntu
Darryl Cousins edited this page Mar 2, 2024
·
3 revisions
Telescope requires libtls
which is not packaged for Ubuntu yet. It's available as libtls20
and libtls-dev
on Sid, so it will eventually come to Ubuntu too. In the meantime, obtain libtls-dev.deb
and libtls20.deb
from https://packages.debian.org/bookworm/source/libretls, and manually install using
sudo dpkg -i libtls20.deb
sudo dpkg -i libtls-dev.deb
or (Ubuntu 22.04.4):
sudo apt install libtls-dev
or build them from source.
Read about the confusing naming of the libraries involved.
You may need to install other libraries, such as libevent-dev
, if the configure script shows missing dependencies.
For example grapheme.h
was missing on Ubuntu 22.04.4 and I was unable to locate a package so I installed libgrapheme-2.0.2 from source without any trouble.