Update requirements and installation instructions

This commit is contained in:
2026-01-10 16:49:51 +01:00
parent 4ae02411aa
commit b59dffc496
2 changed files with 26 additions and 7 deletions

View File

@@ -8,14 +8,32 @@ A simple, motivating training diary focused on Calisthenics and basic health met
- **Progress Tracking:** Visual graphs for weight and waist trends.
- **Motivation:** Streak tracking to keep you consistent.
## How to Run
1. Ensure you have Python 3.10+ installed.
2. The dependencies are already installed in the `venv` folder if you used the setup script.
3. Run the application:
## Installation
1. **Clone the repository:**
```bash
./venv/bin/python main.py
git clone https://gitea.ramforth.net/ramforth/ExerciseDiary.git
cd ExerciseDiary
```
2. **Create a virtual environment (recommended):**
```bash
python3 -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
```
3. **Install dependencies:**
```bash
pip install -r requirements.txt
```
## Running the App
Run the application using the python executable from your virtual environment:
```bash
python main.py
```
## Tech Stack
- **GUI:** CustomTkinter
- **Database:** SQLite

View File

@@ -2,3 +2,4 @@ customtkinter
matplotlib
packaging
pillow
numpy