I've just started using Python with Spyder at work, which means I'm far more restricted than normal as I have no access to the command line.
I'm trying to access the PyPDF2 library, which I have downloaded as a ZIP file, and then pointed to this file with the PYTHONPATH manager. I still can't access it:
from PyPDF2 import PdfFileMerger, PdfFileReader
gets: "ImportError: No module named 'PyPDF2'"
All the walk throughs I've seen of using PYTHONPATH involve using the command line. Can anyone help with how to do this without this access? Sorry am relatively new to this and really stuck!
Thanks
