-
Notifications
You must be signed in to change notification settings - Fork 695
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Running RPA-Python in Docker, tagui rpa_python chrome: not found - pending some checks #274
Comments
Hey @richylyq, I tried to replicate you problem to get a better view of it. But I'am not able to build an image out of the docker file. Can you give me instructions to build it? Greetings, |
hey @fi-do, here's my dockerfile for your reference
With Regards, |
Adding on to @fi-do's reply, @richylyq it looks like your Docker file does not install the RPA for Python package. But assuming it is installed, the error message seems to suggest that the file Some ideas to try will be deleting this folder You can also try running r.setup() yourself to force an installation to see if any error messages appear. |
You can also try running below command manually (create an empty rpa_python file), to see if any error happen.
|
Hey @kensoh, I've tried out the above debug methods but to no avail. I'll be putting Docker on hold for the moment to setup rpa on my local machine but I am facing another issue
when i tried ending the process, the same error occurred was shown
|
Hi @richylyq from your logs above it looks like the Can you verify if there is a folder .tagui under /home/user? From terminal you can run below to see if the file exist?
If the folder and file is not there, there might be some permissions issue to write to your machine. But one thing puzzling I don't understand is from your logs when this line shows |
hi @kensoh, the file exists |
Maybe some issue with the user you are using to run Python and the owner user of that folder. You can check more what is the issue with the Python process using following - import os
print(os.path.isfile('/home/user/.tagui/src/tagui')) And from Python itself try to run directly and see what happens - import os
os.system('/home/user/.tagui/src/tagui rpa_python') |
this returned
and for this, i've gotten
|
What happens when you type this from terminal?
|
After you try above, try below and see what happens -
I assume you have followed the steps in https://colab.research.google.com/drive/13bQO6G_hzE1teX35a3NZ4T5K-ICFFdB5?usp=sharing#scrollTo=tQ4BGdSNACgP which includes installing PHP if your Linux doesn't have PHP. |
both of them returned |
Oh if both returned terminated when run from your terminal, it looks like some strange issue with upstream TagUI in your env. See if you can join the weekly Zoom Q&A on Thursday to troubleshoot with screen sharing and remote control - |
noted on that. Could it be an Ubuntu version mismatch (just guessing tho it should not affect running TagUI) |
hey @kensoh i tried installing phantomjs as per #190 (comment)
then for
|
Hi @richylyq can you check what is your php version with |
it's v8 currently, i will try to rollback to v7 instead first |
I see.. Before you roll back to v7, can you try deleting the file below -
run I want to see other than this error message, is there any other blockers to troubleshoot. |
after removing the
|
Thanks for your details, looks like the TagUI engine is running ok, can you try run below to see if any problem with Chrome?
Also, try running below in the folder which the rpa_python file is generated.
Above would be exactly what happens when you do |
i tried both of the commands above but they just got stuck for quite a bit without any value return or response. anw, based on the video, am i correct to say that whenever 2021-08-04.16-32-13.mp4 |
From your observations, it sounds like there is some blocker with integration to Chrome. An issue I encountered before a due to company network policy, it does not allow TagUI to connect to the websocket connection and thus end up with an infinite loop. This is the code block in tagui/src/tagui file with that loop.
When you run the command Alternatively, if you could join the Weekly Zoom Q&A we can look into it together. This is issue with upstream TagUI in your environment and requires me to troubleshoot directly on your laptop - |
using the #140 (comment) as my reference point for hosting my project with RPA-Python, i am encountering these issues right after
r.init()
r.init(headless_mode = True)
What could have gone wrong here? My chrome has been installed in
/usr/bin
The text was updated successfully, but these errors were encountered: