-
Can I install this code as a package on Centos? i am new on linux |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @web-apply If cgif is not yet available for your Linux distribution, you can compile/install cgif as a shared library from source: Requirements:
Steps:
I've also added general notes on the installation/compilation of cgif to INSTALL.md. I hope this information is helpful. |
Beta Was this translation helpful? Give feedback.
Hi @web-apply
cgif is relatively new, so it's not yet packaged for many distributions. But you may want to have a look here:
https://repology.org/project/cgif/versions
If cgif is not yet available for your Linux distribution, you can compile/install cgif as a shared library from source:
Requirements:
Steps:
For Centos the commands for building and installing cgif from source should look like this:
sudo yum install meson gcc
git clone https://github.com/dloebl/cgif
cd cgif/
meson setup build --prefix=/usr
sudo meson install -C build
I've also added general notes on the installation/compilation of cgif to INSTALL.md. I hope this informatio…