Hi,
I am getting the error:
ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.
my code:
from ayx import Alteryx
import pandas as pd
import zipfile
archive = zipfile.ZipFile(r'O:\Alteryx\Original - All fields - October 2022.zip')
xlfile = archive.open('Original - All fields - October 2022.xls')
df = pd.concat(pd.read_excel(xlfile, header = 1, sheet_name=None), ignore_index=True)
Alteryx.write(df, 1)
However I have this module installed on my python on pc and the code runs fine locally.
Why doesnt this work in alteryx python tool?
Thanks.