File size: 741 Bytes
50fcf88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# SmartDoc AI - Virtual Environment Activation Script
# Run this script to activate the virtual environment

Write-Host "?? Activating SmartDoc AI virtual environment..." -ForegroundColor Cyan

# Activate the virtual environment
& ".\venv\Scripts\Activate.ps1"

Write-Host "? Virtual environment activated!" -ForegroundColor Green
Write-Host ""
Write-Host "?? Installed packages:" -ForegroundColor Yellow
pip list | Select-String -Pattern "langchain|chromadb|gradio|opencv|google-generativeai"
Write-Host ""
Write-Host "?? To run the application:" -ForegroundColor Cyan
Write-Host "   python main.py" -ForegroundColor White
Write-Host ""
Write-Host "?? To deactivate:" -ForegroundColor Cyan
Write-Host "   deactivate" -ForegroundColor White