Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamara committed Mar 17, 2024
1 parent 83ee136 commit b594596
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,24 @@ Before you try to scrape any website, go through its robots.txt file. You can ac
cp .env.example .env
# Don't worry when the following step errors related to chromedriver binary, we will install them right after.
composer install
```

#### Add chromedriver to Path

```bash
# install chromedriver for Panther client.
vendor/bin/bdi detect drivers
# Or
# chromedriver_mac64
# chromedriver_win32
# See https://chromedriver.storage.googleapis.com
# for drivers list.
wget https://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo mv chromedriver /usr/bin/chromedriver
chromedriver --version
```

#### Add ./drivers/ to your environment Path.

```bash
# Run composer install again.
composer install
Expand Down

0 comments on commit b594596

Please sign in to comment.