Python - Error import pandas

Asked

Viewed 35 times

-2

People I’m in trouble when I try to use pandas in my project, see this mistake:

File "c:\Users\jua2544825\Desktop\front_reembolso\main.py", line 10, in <module>
    from pandas import read_csv as pd
  File "C:\Users\jua2544825\AppData\Local\Programs\Python\Python39\lib\site-packages\pandas\__init__.py", line 16, in <module>
    raise ImportError(
ImportError: Unable to import required dependencies:
dateutil: No module named 'dateutil'

Does anyone know what could be causing this mistake? I did the installation of pandas normally, tested on another machine of mine and works normally.

1 answer

1


You did the installation using Pip?

pip3 install python-dateutil
  • I did that command and it worked, thank you very much for the force :D

Browser other questions tagged

You are not signed in. Login or sign up in order to post.