Hello @UnyBots,
I’m not sure if this is still relevant to you or if anyone else is facing similar issues, but I recently faced this warning on a new Windows server where I had only installed the embedded Python via OpenRPA. It appears that some libraries were missing, and I found a solution that worked for me. I replaced the embedded Python with a new and compatible version located at: C:\Users\[your_user]\AppData\Local\python-3.11.0-embed-amd64
.
Please follow these steps:
- Download the python-3.11.0-embed-amd64.zip release.
- Back up the folder named
python-3.11.0-embed-amd64
created by OpenRPA, and then replace it with the newpython-3.11.0-embed-amd64
from GitHub. - Inside the new Python folder, run the following command:
python.exe -m pip install --upgrade pip
. - Test if it works by running the following command:
python.exe -m pip install numpy
.
By following these steps, your OpenRPA setup should work smoothly. I hope this solution helps!