web-dev-qa-db-ja.com

sudo apt-get install swig on Ubuntu 14.04

Ubuntu 14.04にSwigをインストールしようとしています。

Sudo apt-get install swig

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

Seachは無関係なものを提供します:

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

ハウエ ここ

それでは、swigをインストールする適切な方法は何ですか?

更新:Sudo apt-get updateが助けたようです。

6
mrgloom

sWIGの最新の開発(マスター)バージョンをダウンロードします。

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

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

お役に立てば幸いです、ゲップ

6
UserK