Closed ryd3v closed 3 months ago
process so far,
git clone https://github.com/fit-project/fit.git cd fit python3 -m venv venv source venv/bin/activate pip install -U pip setuptools pip install poetry
I got it to run on Linux with the following
git clone https://github.com/fit-project/fit.git
cd fit
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools
pip install poetry
poetry export -f requirements.txt --output requirements.txt
pip install -r requirements.txt
python3 fit.py
process so far,