Finishing touches

pull/465/head
micziz 3 years ago
parent b87f2694dc
commit 0b646a4546

@ -35,6 +35,9 @@ These videos on TikTok, YouTube and Instagram get MILLIONS of views across all p
2. Run `pip3 install -r requirements.txt`
3. Run `playwright install` and `playwright install-deps`.
**EXPERIMENTAL**: Run this install script to do steps 1-3 automatically (it also install dependencies!). Supports MacOS and Debian, Arch, CentoOS and fedora.
4.
4a **Automatic Install**: Run `python3 main.py` and type 'yes' to activate the setup assistant.

@ -1,3 +1,5 @@
#!/bin/sh
function install_fail() {
echo "Installation failed"
exit 1
@ -153,6 +155,8 @@ install_deps(){
install_fedora || install_fail
elif [ "$(cat /etc/os-release | grep -i "centos")" ]; then
install_centos || install_fail
else
printf "Your OS is not supported\n Please install python3, pip3 and git manually\n After that, run the script again with the -p option to install python and playwright dependencies\n If you want to add support for your OS, please open a pull request on github\n https://github.com/elebumm/RedditVideoMakerBot"
fi
fi
}

Loading…
Cancel
Save