diff options
-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 |