21 lines
329 B
Bash
21 lines
329 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 starcoder2
|
||
|
ollama pull llama3.2
|
||
|
|
||
|
ollama pull wizard-math
|
||
|
ollama pull starcoder2:7b
|
||
|
ollama pull llama3.1
|
||
|
|
||
|
chmod +x run.sh
|