mirror of
https://github.com/bellingcat/facebook-downloader.git
synced 2026-06-07 19:18:31 +03:00
9 lines
422 B
Bash
9 lines
422 B
Bash
#!/bin/bash
|
|
|
|
# Download geckodriver .tar.gz file and pipe it to 'tar' to extract the geckodriver binary directly into /usr/bin.
|
|
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-linux64.tar.gz | \
|
|
tar xz -C /usr/bin
|
|
|
|
# Install Python packages defined in the current directory's setup.py/pyproject.toml file. (pyproject.toml in this case)
|
|
pip3 install .
|
|
echo "Setup complete." |