Installing isystem.connect Python SDK
Python and isystem.connect SDK are part of snap. However, if you want to install the SDK into your Python virtual environment, it is available on PyPi:
Install isystem.connect. |
pip3 install isystem.connect |
Test installation. |
python |
If you get an error:
ImportError: libxerces-c-3.1.so: cannot open shared object file: No such file or directory |
it means that you have to install xerces:
sudo apt-get install libxerces-c3.1 |
Since xerces 3.1 is no longer available (xerces 3.2 is distributed now), you have to download and install it manually:
mkdir xerces31; cd xerces31 |