Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to install pdfminer. I get this error when using the command %python setup.py install

error: could not create '/usr/local/lib/python2.4/site-packages/pyPdf':
Permission denied

So i tried:

python2.4 setup.py install --home=$HOME/lib/python2.4

Now when i try pdf2txt.py -o output.html samples/simple1.pdf I get another error:

from pdfminer.pdfparser import PDFDocument, PDFParser
ImportError: No module named pdfminer.pdfparser

Any help would be appreciated.

share|improve this question
Obviously running the installation as normal user without root permissions since you are trying to install your stuff in /usr/local. Using sudo is your friend. – esaelPsnoroMoN Dec 22 '12 at 20:52
As said, it looks like you need admin rights to install this. Try executing this as root user. (Refer to your distribution's doc if you do not know how) – Clement Rey Dec 22 '12 at 21:05
@user1833746, if you can elaborate on how I can use sudo to accomplish this and post it as an answer I will accept it. Thanks – Jiyda Mint Moussa Dec 23 '12 at 9:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.