6

I want to compile flvtool++, but it requires boost-devel libraries.

I tried to install it via this command:

sudo apt-get install boost-devel

But I got the error:

E: Unable to locate package boost-devel

Is there an other way to compile flvtool++ source or any 64-bit binaries?

Eliah Kagan
  • 119,640
kabindra
  • 195

1 Answers1

16

To develop with the Boost libraries in Ubuntu/Debian, you need to install the libboost-all-dev package:

sudo apt-get install libboost-all-dev
ish
  • 141,990