web-dev-qa-db-fra.com

sudo apt-get install swig sur Ubuntu 14.04

J'essaie d'installer swig sur Ubuntu 14.04:

Sudo apt-get install swig

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package swig

Seach donne quelque chose de hors de propos:

apt-cache search swig

python-sip - Python/C++ bindings generator runtime library
libkml0 - Library to manipulate KML 2.2 OGC standard files
libapparmor-Perl - AppArmor library Perl bindings

Cependant ici

Alors, quelle est la bonne façon d’installer swig?

Mise à jour: Semble Sudo apt-get update aidé.

6
mrgloom

téléchargez la dernière version (principale) de développement de SWIG:

git clone https://github.com/swig/swig.git

cd swig
./autogen.sh
./configure
make
Sudo make install

J'espère que ça aide, Gepp

6
UserK