Run in Ubuntu #33
Unanswered
fabioselau077
asked this question in
Q&A
Replies: 1 comment 2 replies
-
If you are encountering this issue, please note that it is advisable to run the program in Docker rather than on VPS/Cloud instances. You can find the instructions for running it in Docker here. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using my macOS I just ran 3 commands and everything was working perfectly, but when uploading to an EC2 Ubuntu the problems started to appear.
Here is a mini tutorial for those who have the same problems, I tested it with Python 3.9 and 3.10.
apt-get install python3-pip
(if not install)git clone https://github.com/omkarcloud/google-maps-scraper
cd google-maps-scraper
python3 -m pip install -r requirements.txt
Download and move chromedriver (file not folder...) (Program not running because of a missing driver #20 (comment)) to /build if not exists
“
chmod 755
” in build/chromedriverapt update && apt install wget
(if not install)wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.198-1_amd64.deb
apt install ./google-chrome-stable_114.0.5735.198-1_amd64.deb
python3 main.py
Beta Was this translation helpful? Give feedback.
All reactions