Hello All,
Trying to build an exe with pyinstaller running into trouble first with pandas gota modulenotfounderror so reinstalled pandas, seemed to get rid of that, now it's giving me
"Unable to import required dependencies:\n" + "\n".join(missing_dependencies)
ImportError: Unable to import required dependencies:
numpy: No module named 'numpy'
pytz: No module named 'pytz'
dateutil: No module named 'dateutil'
I tried using pip to install those again but get requirement already satisfied" for everything but dateutilsget no matching distribution found
I tried modifying the spec file like here nad using:pyinstaller someapp.py --onefile --hidden-import pandas
Anything else I should try?
Thanks