From 1f6eec71e0caedb11eda51d326faca0faad62969 Mon Sep 17 00:00:00 2001 From: Taras Chuiko Date: Wed, 1 Jun 2022 09:37:34 +0300 Subject: [PATCH 1/2] Added playwright install command to readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 26d8156..31351cb 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,10 @@ These videos on TikTok, YouTube and Instagram get MILLIONS of views across all p 1. Clone this repository 2. Rename `.env.template` to `.env` and replace all values with the appropriate fields. To get Reddit keys (**required**), visit [the Reddit Apps page.](https://www.reddit.com/prefs/apps) TL;DR set up an app that is a "script". Copy your keys into the `.env` files. 3. Run `pip3 install -r requirements.txt` -4. Run `python3 main.py` -5. ... -6. Enjoy 😎 +4. Run `npx playwright install` +5. Run `python3 main.py` +6. ... +7. Enjoy 😎 ## Contributing & Ways to improve 📈 From 6d1d06b530a5fd821532920e8ceed69314b638e0 Mon Sep 17 00:00:00 2001 From: Taras Chuiko Date: Fri, 3 Jun 2022 19:25:20 +0300 Subject: [PATCH 2/2] Used python instead of npx to install playwright --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31351cb..b8b8887 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ These videos on TikTok, YouTube and Instagram get MILLIONS of views across all p 1. Clone this repository 2. Rename `.env.template` to `.env` and replace all values with the appropriate fields. To get Reddit keys (**required**), visit [the Reddit Apps page.](https://www.reddit.com/prefs/apps) TL;DR set up an app that is a "script". Copy your keys into the `.env` files. 3. Run `pip3 install -r requirements.txt` -4. Run `npx playwright install` +4. Run `python3 -m playwright install` 5. Run `python3 main.py` 6. ... 7. Enjoy 😎