I have installed Z3 on a remote server where I am not Root. I changed the prefix during the installation to my directory where I have write access, The installation went smoothly and now I have two directories in my home directory one for the project and one where I unzipped/build/installed z3. when I want to execute a python script that includes:
from z3 import *
I receive this error:
ModuleNotFoundError: No module named 'z3'
I think it's a problem related to paths and my python file can't get to the z3 module, I don't know how to fix this especially that python3 was installed by the root and not by me.