I'm trying to use the Python tool to bring in data using pd.read_excel("/path/"). However, when I do, I get an error:
ModuleNotFoundError Traceback (most recent call last)
c:\program files\alteryx\bin\miniconda3\pythontool_venv\lib\site-packages\pandas\io\excel.py in __init__(self, io, **kwds)
351 try:
--> 352 import xlrd
353 except ImportError:
ModuleNotFoundError: No module named 'xlrd'
Does that mean xlrd is a dependency for pandas when trying to use read_excel? If that's the case, is there any way to use pandas for reading in outside data files?