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

I have a linux environment and I have an excel file at location /home/ramesh/abcd/ramesh.xls I am trying to read the excel file using xlrd package but I am unable to do so . Running the Script gives me an error

File "xlsparsing.py", line 5, in <module>
    wb = xlrd.open_workbook('/home/ramesh/abcd/ramesh.xls')
File "/usr/local/lib/python2.7/site-packages/xlrd/__init__.py", line 400, in open_workbook
    f = open(filename, "rb")

I am running the script from location /home/ramesh But when I copy the same .xls file to my home directory from place where I am running the Script I am able to Read the excel file . So basically I need to know what to give inside below line so that the xls can be read from my script in location /home/ritesh

wb = xlrd.open_workbook('/home/ramesh/abcd/ramesh.xls')

My code goes something like this :

  import xlrd 
  import sys
  wb = xlrd.open_workbook('/home/ramesh/abcd/ramesh.xls')
  sh = wb.sheet_by_index(0)

Python version I have is

  Python 2.7.3 (default, Sep  1 2012, 14:55:40)
  [GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2

and the xlrd version is xlrd-0.8.0

share|improve this question
1  
You did not give the actual error. Is that an IOError? What you do to open seems ok, but since you mention /home/ritesh are you running the script as different user and unable to access the file because of file and/or directory permissions? – Anthon Mar 15 at 10:25

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.