Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • python3

  • SWIG: (Simplified Wrapper and Interface Generator) a tool used to connect C or C++ code with scripting languages like python. https://www.swig.org/

To install the required packages in Linux just do the following as root:
Ubuntu (Debian and the like):

Code Block
apt install python3 swig

Scientific Linux (Redhat and the like):

Code Block
yum install python3.x86_64 swig.x86_64

How to build python module (Linux):

...