Hello all
I installed python 3.12 and Power Automate Desktop on my device.
This is my script:
import requests
#import json
#import pandas as pd
def main():
print("Data formatting and transfer completed successfully.")
main()
I got the following error:
Traceback (most recent call last):
File "<string>", line 5, in <module>
ImportError: No module named requests
I am trying to run a python script on Power Automate Desktop. The code is correct, and it is work well when I tried to execute it separately, but when I put this code on Power Automate Desktop, it is not recognizing the packages import pandas as pd import requests import json
Although I already installed all the packages on my device by (pip install) and the script is working well on my device separately. But not with Power Automate.
Could you please help me on how to solve this problem?
How can I make the Power Automate Desktop able to recognize python packages?