I ran the Pandas.read_excel function in the Python Script component. I got the following error
ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.
In my own development environment (using Anaconda3), I can solve this problem with the "pip install xlrd" command, but how should I handle this in the Pipeline Pilot environment?
Is it better to install it in the built-in environment? Is it better to install in the built-in environment, or to create a separate Python environment (e.g. virtual environment) and install it?