provided extra command for Linux, when installing project

This commit is contained in:
Falko Victor Habel 2024-05-19 23:04:52 +02:00
parent d723b051c6
commit f0298a4391
1 changed files with 11 additions and 2 deletions

View File

@ -14,13 +14,22 @@ This is my Final Project for CS50P. A implementation of a RAG System using Chrom
5. Code Highlighting: Either highlighted in red within the `terminal` or displayed in a separate widget using the `GUI`, this improves the readability and understanding of code snippets 5. Code Highlighting: Either highlighted in red within the `terminal` or displayed in a separate widget using the `GUI`, this improves the readability and understanding of code snippets
## Installation ## Installation
1. Clone the repository or download the project files. 1. Clone the repository or download the project files from:
`https://gitea.fabelous.app/fabel/Fabelous-Ai-Chat`
2. Install required dependencies by running: 2. Install required dependencies by running:
```bash ```bash
pip install -r requirements.txt pip install -r requirements.txt
``` ```
3. If you have installed Python 3 via Homebrew on MacOS you are required to use `brew install python-tk` in order to run this project properly. 3. To run this project properly, you will need to ensure that the Python 3 and Tkinter libraries arei nstalled.
- For MacOS users who have installed Python 3 via Homebrew, use the following command in your terminal:
```bash
brew install python-tk
```
- For Linux users, execute the following command in your terminal:
```bash
apt-get install python3-tk
```
## Configuration ## Configuration