Boa tarde, não consigo abrir(importar um arquivo csv) no jupyter, aparece o seguinte erro:
FileNotFoundError Traceback (most recent call last) in () ----> 1 df = pd.read_csv('dados.csv') 2 df
~\Anaconda3\lib\site-packages\pandas\io\parsers.py in parser_f(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, escapechar, comment, encoding, dialect, tupleize_cols, error_bad_lines, warn_bad_lines, skipfooter, doublequote, delim_whitespace, low_memory, memory_map, float_precision) 676 skip_blank_lines=skip_blank_lines) 677 --> 678 return read(filepathor_buffer, kwds) 679 680 parser_f.name = name
~\Anaconda3\lib\site-packages\pandas\io\parsers.py in read(filepathor_buffer, kwds) 438 439 # Create the parser. --> 440 parser = TextFileReader(filepath_or_buffer, **kwds) 441 442 if chunksize or iterator:
~\Anaconda3\lib\site-packages\pandas\io\parsers.py in init(self, f, engine, **kwds) 785 self.options['has_index_names'] = kwds['has_index_names'] 786 --> 787 self.makeengine(self.engine) 788 789 def close(self):
~\Anaconda3\lib\site-packages\pandas\io\parsers.py in makeengine(self, engine) 1012 def makeengine(self, engine='c'): 1013 if engine == 'c': -> 1014 self._engine = CParserWrapper(self.f, **self.options) 1015 else: 1016 if engine == 'python':
~\Anaconda3\lib\site-packages\pandas\io\parsers.py in init(self, src, *kwds) 1706 kwds['usecols'] = self.usecols 1707 -> 1708 self._reader = parsers.TextReader(src, *kwds) 1709 1710 passed_names = self.names is None
pandas_libs\parsers.pyx in pandas.libs.parsers.TextReader._cinit__()
pandas_libs\parsers.pyx in pandas.libs.parsers.TextReader.setup_parser_source()
FileNotFoundError: File b'dados.csv' does not exist
Se puderem ajudar, desde já agradeço.