barunsaha commited on
Commit
50f37bd
1 Parent(s): f4faf43

Update installation steps

Browse files
Files changed (1) hide show
  1. README.md +3 -0
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