- python 3
- python3-venv
Debian/Ubuntu
apt-get install python3-venv python3-pip
MacOs
brew install python3 python3-venv python3-pip
$: mkdir project && cd project
$: python3 -m venv venv
$: source venv/bin/activate
$: pip install -r requirements.txt
(venv) $: ./script.py -f <input_file> -o <results_file>
Use test.txt
file to quickly check the execution results on simple data