Skip to content

Commit

Permalink
Add python-setuptools to be installed using install.sh (#207)
Browse files Browse the repository at this point in the history
Due to an installation issue with later versions of Python (3.12), this additional package became a requirement.
  • Loading branch information
Codixer authored Feb 23, 2025
1 parent f840e01 commit c6dde0f
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,23 @@ set -e
###################################################

APT_DEPENDENCIES=(
make # cook
inkscape # cook
ffmpeg # cook
flac # cook
fdkaac # cook
vorbis-tools # cook
opus-tools # cook
zip # cook
unzip # cook
lsb-release # redis
curl # redis
gpg # redis
postgresql # web
sed # install
coreutils # install
build-essential # install
make # cook
inkscape # cook
ffmpeg # cook
flac # cook
fdkaac # cook
vorbis-tools # cook
opus-tools # cook
zip # cook
unzip # cook
lsb-release # redis
curl # redis
gpg # redis
postgresql # web
sed # install
coreutils # install
build-essential # install
python-setuptools # install
)

# Get the directory of the script being executed
Expand Down Expand Up @@ -431,4 +432,4 @@ config_cook(){
info "End time: $(date +%H:%M:%S)"
info "Log output: $craig_dir/install.log"

} 2>&1 | tee "$craig_dir/install.log"
} 2>&1 | tee "$craig_dir/install.log"

0 comments on commit c6dde0f

Please sign in to comment.