15 lines
352 B
Bash
Executable file
15 lines
352 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
set -e
|
|
|
|
|
|
sudo apt-get install -y python3.10 python3-pip
|
|
python3.10 -m pip install --upgrade pip
|
|
python3.10 -m pip install $1 ./eris
|
|
eris --apt-install-tools
|
|
# When developing...
|
|
# python3.10 -m pip install -e ./eris
|
|
# python3.10 -m pip install -e ./fill3
|
|
# python3.10 -m pip install -e ./termstr
|
|
# python3.10 -m pip install -e ./lscolors
|