Hello All
I installed python 3.12 and Power Automate Desktop on my device to run a python script
I have a python script, and it is works fine on my device. But Power Automate could not run this script because it cannot recognize the package requests. Despite the packages already installed on my device.
I encounter this error:
This is the script:
import requests
#import json
def main():
print("Data formatting and transfer completed successfully.")
main()
How can I make Power Automate Desktop recognize the packages?