I'm trying to install z3 locally on my MAC, When I try the example, I got the exception: z3types.Z3Exception: 'init(Z3_LIBRARY_PATH), which is weird, because I've already linked it.
Here is how I installed it:
>> git clone https://git01.codeplex.com/z3 -b unstable
>> cd z3
>> python scripts/mk_make.py
>> sudo make install
It says "z3 was successfully installed", but with 3 warnings. Then I link the lib:
>> export DYLD_LIBRARY_PATH = /Users/my_acount/Documents/z3/build:${DYLD_LIBRARY_PATH}
when I try the example by
python example.py
it returns the exception: z3types.Z3Exception: 'init(Z3_LIBRARY_PATH)
Anybody know why?