Last active
November 19, 2018 14:56
-
-
Save davidbarkhuizen/4ddeb9f44cfbd1ff0a0e1f749dfef9fa to your computer and use it in GitHub Desktop.
installing swig on ubuntu 1804
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install automake | |
| sudo apt-get install libpcre3-dev | |
| sudo apt install byacc | |
| git clone https://github.com/swig/swig.git | |
| cd swig | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install | |
| sudo apt-get install python3-dev | |
| sudo apt install libpcsclite-dev | |
| sudo apt install python3-pip | |
| pip3 install pyscard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment