vtm: Can't build vtm

Hey all, I’ve been having this issue where it’s missing a dependencies called “rich-text”. Any idea on how to fix? image It’s on the --build stage

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 18

Most upvoted comments

By default Ubuntu 20.04 repositories provide GCC version 9.3.0. std::span requires GCC 10 or higher.

The default Ubuntu repositories include several GCC versions, from 7.x.x to 10.x.x. Install the latest GCC and G++ versions by typing:

sudo apt update
sudo apt install gcc-10 g++-10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10