Update requirements and installation instructions
This commit is contained in:
28
README.md
28
README.md
@@ -8,12 +8,30 @@ 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
|
||||||
./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
|
## Tech Stack
|
||||||
|
|||||||
@@ -2,3 +2,4 @@ customtkinter
|
|||||||
matplotlib
|
matplotlib
|
||||||
packaging
|
packaging
|
||||||
pillow
|
pillow
|
||||||
|
numpy
|
||||||
Reference in New Issue
Block a user