I was previously using python to pass multiple queries to an Oracle Database but the script took too long to execute. So I decided to opt for PyPy and use the JIT Compiler rather than the CPython interpreter. I installed PyPy via apt and then compiled the script with the command:
pypy script_file.py
It returned back the following error:
import cx_Oracle
ImportError: No module named cx_Oracle
Is cx_Oracle not supported by PyPy or am I doing something incorrectly? If it is, is this due to an issue with the environment values and how can I set it right?
Thank you for the help! Sorry for the bad English.