How to install SWIG on Linux centos [closed]
开发者_高级运维
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionI want to install SWIG on My linux server to test some stuff.
How can install that
You have a few options. The easiest is to check for a binary package in the CentOS repository.
sudo yum install swig
Alternatively, you can download SWIG from http://www.swig.org/download.html, untar it, ./configure, make, sudo make install and you're done.
Of course, finding the proper dependencies may be a little difficult, but with a little bit of Google-fu, you'll find what you need.
精彩评论