Please enable JavaScript to view this site.

winIDEA Help

Version: 9.21.200

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:

 

number1

Install isystem.connect.

pip3 install isystem.connect

 

number2

Test installation.

python
>>> import isystem.connect as ic
>>> ic.getModuleVersion()

 

 

Troubleshooting

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

 

Ubuntu 18.04

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
wget http://archive.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.4.tar.gz
tar xvf xerces-c-3.1.4.tar.gz
cd xerces-c-3.1.4
./configure
make
sudo make install
cd ~/bin/embeddedPy/lib64/python3.6/site-packages/isystem  # dir with your venv
ln -s /usr/local/lib/libxerces-c-3.1.so

 

Copyright© TASKING Germany GmbH