Newer
Older
📦 Requirements:
- [Ollama](https://ollama.com/)
- [Docker 🐳](https://www.docker.com/)
- [Python 3.12 🐍](https://www.python.org/)
- [Qdrant](https://qdrant.tech/)
## Steps to Run the Project
### 1. Clone the Gitlab Repository
```
git clone git@gitlab.tugraz.at:EA55668319A03721/adv-inf-retrv.git
```
### 2. Navigate to the Project Directory
### 3. Create a Python Virtual Environment
- On Windows:
```
python -m venv venv
```
- On Linux:
```
python3 -m venv venv
```
### 4. Activate Python Virtual Environment
- On Windows:
```
.\venv\Scripts\activate
```
- On Linux:
```
source venv/bin/activate
```
### 5. Pull the Qdrant Docker File
```
docker pull qdrant/qdrant
```
### 6. Run the Qdrant Docker File and Attach the Storage
```
docker run -d --name air -p 6333:6333 \
-v $(pwd)/qdrant_store:/qdrant/storage \
qdrant/qdrant