I’m trying out Python 3 (jep) with Cloverleaf 20.1.2. Is there a way to install modules such as the “hl7” module from PyPI?
I haven’t figured out how to get a command line prompt from jep. Is this possible?
I printed out “sys.path” from within a TPS function, and it listed a bunch of system python 3.8 folders, so I used “pip3.8 install hl7” which installed the module in /usr/local/lib/python3.8/site-packages. However, if I try to import it from my TPS function, I get an error, and it seems to be related to the module requiring the math module. If I try to “import math” in my TPS function I get the same error (clImport() failed. Exception:/usr/lib64/python3.8/lib-dynload/math.cpython-38-x86_64-linux-gnu.so: undefined symbol: PyExc_ValueError). I tried to include the full error but I keep having problems posting it to this forum.
Also, the engine process that I’m running this proc in is also crashing with a panic whenever I stop the process.