Console line app for self-updating rating system
Using pip
python3 -m venv .venv
pip install -r requirements_pip_python38+.txt
source .venv/bin/activate
pip install -e .
- Crates a new virtual env
- Install all required packages in this new virtual env
- Activates this virtual env
- Installs the 'frank' package
Using conda
conda env create --name ratings --file requirements_conda.yml
conda activate ratings
pip install -e .
Navigate to project folder and activate the virtual env. Use the app!
source .venv/bin/activate
frank list players
It is possible to install package in global python which should enable to use command frank from anywhere. Currently it throws me some error. And maybe it does not know how to find DATA folder if I am anywhere?