diff options
author | P.J. Finlay <pjappdevelopment@gmail.com> | 2021-07-12 22:40:22 +0000 |
---|---|---|
committer | P.J. Finlay <pjappdevelopment@gmail.com> | 2021-07-12 22:40:22 +0000 |
commit | 1e4a00679d8bcb2acf4e88090404faada0431141 (patch) | |
tree | 7319e165582897f4f83a82eb85e6130f698a881f | |
parent | 8f2c08a179e242f0a0a2685725f024efdb8614ee (diff) |
Install dependencies
-rwxr-xr-x | setup.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..8e45ac5 --- /dev/null +++ b/setup.sh @@ -0,0 +1,9 @@ +sudo apt-get update +sudo apt-get upgrade -y + +# Install PyICU dependencies +# https://community.libretranslate.com/t/pyicu-fails-to-install-on-ubuntu-20-04/23 +sudo apt-get install -y libicu-dev python3-icu pkg-config + +# Install Nginx +sudo apt-get install -y nginx |