-3

I can't open a CSV file on Jupyter Notebook. Every time I try to open up, I get this...

Any suggestions or advice would be much appreciated!

The problem

sotmot
  • 1,256
  • 2
  • 9
  • 21
  • 2
    Where are you running the Jupyter notebook? The error message shows Python is running in Linux, but you are giving a Windows path. – Tim Roberts Sep 26 '21 at 03:05

1 Answers1

1

The issue is with the forward slashes in your path. Change them to double backslashes:

C:/Users/nsap/desktop...

to

C:\\Users\\nsap\\desktop

Please see this stackoverflow link for more info Error while reading a csv file in python using pandas

stapmoshun
  • 88
  • 1
  • 7