Spaces:
Running
Running
Update installation steps
Browse files
README.md
CHANGED
@@ -77,6 +77,9 @@ ollama list # View locally available LLMs
|
|
77 |
export RUN_IN_OFFLINE_MODE=True # Enable the offline mode to use Ollama
|
78 |
git clone https://github.com/barun-saha/slide-deck-ai.git
|
79 |
cd slide-deck-ai
|
|
|
|
|
|
|
80 |
streamlit run ./app.py # Run the application
|
81 |
```
|
82 |
|
|
|
77 |
export RUN_IN_OFFLINE_MODE=True # Enable the offline mode to use Ollama
|
78 |
git clone https://github.com/barun-saha/slide-deck-ai.git
|
79 |
cd slide-deck-ai
|
80 |
+
python -m venv venv # Create a virtual environment
|
81 |
+
source venv/bin/activate # On a Linux system
|
82 |
+
pip install -r requirements.txt
|
83 |
streamlit run ./app.py # Run the application
|
84 |
```
|
85 |
|