2fa5f5aa64
debugging tips.
19 lines
413 B
Bash
19 lines
413 B
Bash
#!/bin/bash
|
|
sudo apt install libcairo2-dev
|
|
sudo apt install python3-scipy python3-lmfit python3-matplotlib
|
|
sudo apt install gir1.2-gtksource-3.0
|
|
DEBRELEASE=$(lsb_release -cs)
|
|
case $DEBRELEASE in
|
|
"trixie")
|
|
echo "Trixie detected"
|
|
sudo apt install libgirepository-2.0-dev
|
|
;;
|
|
"bookworm")
|
|
echo "Bookworm detected"
|
|
sudo apt install libgirepository1.0-dev
|
|
;;
|
|
*)
|
|
echo "not implemented" ; exit 1
|
|
;;
|
|
esac
|