Table of Contents
Installing Binary Packages
Some packages can be found here :
- Ubuntu - 16.04 (xenial), 18.04 (bionic) and 20.04 (focal)
- Debian - 9 (stretch) and 10 (buster)
- CentOS - 7 and 8
- Fedora - 30, 31 and 32 (the 3 last releases)
- 64 bits architecture
- python 3
If you need 32 bit binaries or python 2, you need to compile from source distribution.
Ubuntu
First of all, you shall add the gpg key to your keyring :
Add Key
KURI=http://smil.cmm.mines-paristech.fr/packages/jmartins@cmm.gpg.key wget -O- $KURI 2>/dev/null | apt-key add -
Now, configure the Smil repository.
Add repository
apt-add-repository 'deb [arch=amd64] http://smil.cmm.mines-paristech.fr/packages/ubuntu bionic main'
Install smil packages :
Install smil
# Retrieve or update list of packages available apt-get update # look for smil packages apt-cache search smil # install all smil packages apt-get install smil-*
Debian
First of all, you shall add the gpg key to your keyring :
Add Key
KURI=http://smil.cmm.mines-paristech.fr/packages/jmartins@cmm.gpg.key wget -O- $KURI 2>/dev/null | apt-key add -
Add the following line to /etc/apt/sources.list
and replace DISTRO by your distribution name (stretch, …).
/etc/apt/sources.list
deb [arch=amd64] http://smil.cmm.mines-paristech.fr/packages/ubuntu DISTRO main
Install smil packages :
Install smil
# Retrieve or update list of packages available apt-get update # look for smil packages apt-cache search smil # install all smil packages apt-get install smil smil-*
CentOS
epel repository
yum install epel-release
First of all, you shall define a repository. Put this on the file /etc/yum.repos.d/CMM-Smil.repo
.
/etc/yum.repos.d/CMM-Smil.repo
# # [cmm-smil] name=Smil for CentOS-$releasever baseurl=http://smil.cmm.mines-paristech.fr/packages/centos/$releasever/$basearch/ enabled=1 # gpg will come later gpgcheck=0
Import GPG Keys :
rpm --import http://smil.cmm.mines-paristech.fr/packages/jmartins@cmm.gpg.key
… and install Smil
packages with :
CentOS
# first of all, it's always a good idea to clean the cache dnf clean all # to see which packages are available : dnf search smil # to install Python interface to Smil : dnf install smil-python # to install all smil packages : dnf -y install smil-*
Fedora
First of all, you shall define a repository. Put this on the file /etc/yum.repos.d/CMM-Smil.repo
.
/etc/yum.repos.d/CMM-Smil.repo
# # [cmm-smil] name=Smil for Fedora-$releasever baseurl=http://smil.cmm.mines-paristech.fr/packages/fedora/$releasever/$basearch/ enabled=1 gpgcheck=1
Import GPG Keys :
rpm --import http://smil.cmm.mines-paristech.fr/packages/jmartins@cmm.gpg.key
… and install Smil
packages with :
Fedora
# first of all, it's always a good idea to clean the cache dnf clean all # to see which packages are available : dnf search smil # to install Python interface to Smil : dnf install smil-python # to install all smil packages : dnf -y install smil-*