14 lines
311 B
Bash
Executable file
14 lines
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
set -e
|
|
|
|
|
|
sudo apt install -y python3.11 pipx
|
|
pipx install --system-site-packages $1 ./eris
|
|
eris --apt-install-tools
|
|
# When developing...
|
|
# python3.11 -m pip install -e ./eris
|
|
# python3.11 -m pip install -e ./fill3
|
|
# python3.11 -m pip install -e ./termstr
|
|
# python3.11 -m pip install -e ./lscolors
|