Skip to content

Instantly share code, notes, and snippets.

@flixr
Last active January 15, 2021 13:07
Show Gist options
  • Save flixr/10003993 to your computer and use it in GitHub Desktop.
Save flixr/10003993 to your computer and use it in GitHub Desktop.
install ivy-c from source
#!/bin/sh -ex
# install build deps (debian/ubuntu)
sudo apt-get install libpcre3-dev tk-dev libglib2.0-dev libxt-dev
V=3.15.1
TARBALL=ivy-c_${V}.tar.xz
curl -OL http://www.eei.cena.fr/products/ivy/download/packages/${TARBALL}
tar xvf ${TARBALL}
cd ivy-c_${V}/src
make
sudo make install
@mykoniatis
Copy link

Now you can get the tar.xz from : https://www.eei.cena.fr/products/ivy/download/binaries.html#ubuntu
for ubuntu
I recommend to lowland the xz file and to extract it on your computer.
before to perform the make commands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment