forked from React-Group/interstellar_ai
21 lines
332 B
Bash
21 lines
332 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
chmod +x root.sh
|
||
|
pkexec ./root.sh
|
||
|
npm install
|
||
|
npm run build
|
||
|
|
||
|
cd py
|
||
|
python -m venv venv
|
||
|
source venv/bin/activate
|
||
|
python3 -m pip install -r requirements.txt
|
||
|
|
||
|
ollama pull qwen2-math:1.5b
|
||
|
ollama pull qwen2.5-coder:1.5b
|
||
|
ollama pull phi3.5
|
||
|
|
||
|
ollama pull mathstral
|
||
|
ollama pull qwen2.5-coder
|
||
|
ollama pull qwen2.5
|
||
|
|
||
|
chmod +x run.sh
|