This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
ai-virtual-assistant/py/install.sh

20 lines
378 B
Bash
Raw Normal View History

2024-09-17 12:36:32 +02:00
#!/bin/bash
2024-09-17 13:49:52 +02:00
python -m venv venv
2024-09-17 12:36:32 +02:00
source venv/bin/activate
pip install flask
pip install SpeechRecognition
pip install pyaudio
pip install pocketsphinx
pip install sentencepiece
pip install pyqt5
pip install pyqtwebengine
pip install gradio_client
pip install mistralai
2024-09-17 15:03:51 +02:00
pip install pyperclip
2024-09-17 12:36:32 +02:00
ollama pull phi3.5
ollama pull codegemma:2b
ollama pull gemma2:9b
2024-09-17 13:49:52 +02:00
python web_flask.py