Reputation: 163
I just installed Python3.4.2 yesterday on Windows 7. I tried typing out the command to download and install modules in the system terminal but I got Syntax Error. Within the terminal I typed: pip install pyPdf. Just wondering what my issue was.
Upvotes: 0
Views: 62
Reputation: 20080
Apparently, pyPdf is 2.x package
The raise syntax in Python 3.x no longer accepts comma-separated arguments
here is porting guide from 2.x to 3.x
http://docs.pythonsprints.com/python3_porting/py-porting.html
Upvotes: 1