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,13 +8,31 @@ A simple, motivating training diary focused on Calisthenics and basic health met
- **Progress Tracking:** Visual graphs for weight and waist trends. - **Progress Tracking:** Visual graphs for weight and waist trends.
- **Motivation:** Streak tracking to keep you consistent. - **Motivation:** Streak tracking to keep you consistent.
## How to Run ## Installation
1. Ensure you have Python 3.10+ installed.
2. The dependencies are already installed in the `venv` folder if you used the setup script. 1. **Clone the repository:**
3. Run the application: ```bash
```bash git clone https://gitea.ramforth.net/ramforth/ExerciseDiary.git
./venv/bin/python main.py 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 ## Tech Stack
- **GUI:** CustomTkinter - **GUI:** CustomTkinter

View File

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