Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.18 KB

INSTALL.md

File metadata and controls

63 lines (45 loc) · 1.18 KB

Installation

Package

# For reCAPTCHA
sudo apt-get install portaudio19-dev

Pre-Commit

python3 -m pip install pre-commit
pre-commit installed at .git/hooks/pre-commit

Classical

sudo apt-get install python3 python3-dev python3-venv
python3 --version
# Python 3.10.12
python3 -m venv python3-venv
source python3-venv/bin/activate
python3 -m pip install -U pip wheel
python3 -m pip install -r requirements.txt

Update config.ini

Run with python3 bounty_drive.py

PyPy

Not ready - SEGFAULT in some libs (urllib3, cryptography downgraded).

Install PyPy from here

Package compatible with PyPy are in requirements_pypy.txt

sudo apt-get install pypy3 pypy3-dev pypy3-venv
pypy3 --version
# Python 3.9.19 (7.3.16+dfsg-2~ppa1~ubuntu20.04, Apr 26 2024, 13:32:24)
# [PyPy 7.3.16 with GCC 9.4.0]
pypy3 -m venv pypy3-venv
source pypy3-venv/bin/activate
pypy3 -m pip install -U pip wheel
pypy3 -m pip install -r requirements_pypy.txt

pdate config.ini

Run with pypy3 bounty_drive.py