2024-10-09 11:03:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
chmod +x root.sh
|
|
|
|
pkexec ./root.sh
|
|
|
|
npm install
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
cd py
|
2024-10-09 12:01:07 +02:00
|
|
|
python3 -m venv venv
|
2024-10-09 11:03:43 +02:00
|
|
|
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
|
|
|
|
|
2024-10-09 15:34:44 +02:00
|
|
|
ollama pull qwen2-math:1.5b
|
|
|
|
ollama pull starcoder2
|
|
|
|
ollama pull llama3.2
|
|
|
|
|
|
|
|
ollama pull wizard-math
|
|
|
|
ollama pull starcoder2:7b
|
|
|
|
ollama pull llama3.1
|
|
|
|
|
2024-10-09 12:01:07 +02:00
|
|
|
cd ..
|
2024-10-09 11:03:43 +02:00
|
|
|
chmod +x run.sh
|