I installed the Python 2.7.10 64 bit. I downloaded the latest Z3 sources from https://github.com/Z3Prover/z3. I copied the folder z3-master in the Python27 folder. Then, I opened the Visual Studio 2013 command prompt and build the z3 using instructions provided on the same github page. Build was successful. I added the 'PHYTHONPATH c:\Python27\z3-master\build\z3lib.dll'. Now, when I run any example from visual studio python, it give me an error on the first line, i.e.,
from z3 import * : The error is 'no module named z3'
If I run the example from python shell, it give error "init(Z3_LIBRARY_PATH) must be invoked before using z3-python"
I don't see any bin folder inside z3-master or in the build folder. How to use Z3py from within visual studio? Thanks