Not able to read CSV in pandas

Dear All,

I am reading CSV file using panda in python. I am executing the code using exec node in node red.

When I tested it in windows machine using CSV file panda is able to read and it is working fine,

But same file when I read it using panda in exec node red I am getting an error.

"ile "/home/ubuntu/.local/lib/python2.7/site-packages/pandas/io/parsers.py", line 429, in _read
parser = TextFileReader(filepath_or_buffer, **kwds)
File "/home/ubuntu/.local/lib/python2.7/site-packages/pandas/io/parsers.py", line 895, in init
self._make_engine(self.engine)
File "/home/ubuntu/.local/lib/python2.7/site-packages/pandas/io/parsers.py", line 1122, in _make_engine
self._engine = CParserWrapper(self.f, **self.options)
File "/home/ubuntu/.local/lib/python2.7/site-packages/pandas/io/parsers.py", line 1853, in init
self._reader = parsers.TextReader(src, **kwds)
File "pandas/_libs/parsers.pyx", line 387, in pandas._libs.parsers.TextReader.cinit
File ..."

Can any one know how to resolve this issue.

Thanks & Regards
Varun

Issue is resolved, It is a path issue which I am referring inside to read the CSV file

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.