I'm trying to create a Python Script to automate certain aspects of data collection, and part of it involves using a Python Script with numerous packages so as to acquire and process the data. The problem is, I'm not sure how to add the relevant packages to the Python environment within Power Automate; it seems that the error is present due to the script being unable to import, to use the tangible example, when I run with:
The error I get back is:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'pyodbc'
I would guess that doing this would require I install the relevant packages into the environment, but it is unclear how that would be done here. Is there a Python Environment within Power Automate's files that must be accessed? Or do the packages need to be loaded and saved into the flow from elsewhere?