I have Python 3.4.2, and I try to install pysqlcipher on my PC with windows 8. After having entered the code below in my command prompt:
git clone https://github.com/leapcode/pysqlcipher/
cd pysqlcipher
python setup.py build_sqlcipher
I’m getting the following error:
File "setup.py", line 64
print "CFLAGS", os.environ['CFLAGS']
^
SyntaxError: Missing parentheses in call to 'print'
It seems to be a problem with print. I have Python 3.4.2, and the print syntax used here corresponds to Python 2.X. I have done lot of searching but I haven’t found any solution.
Does someone know how to install pysqlcipher with Python 3.4.2?
Thank you for your help!
PS: I have already followed this tutorial and all things indicated have been accomplished.