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