From 451358ff058b0bcb681ab3d960728bf4095ff527 Mon Sep 17 00:00:00 2001 From: Alexandre Ferreira Benevides Date: Wed, 22 Feb 2023 14:58:03 -0500 Subject: [PATCH] [UPD] install_OSX_dependency.sh: remove poetry, pyenv add parallel --- script/install/install_OSX_dependency.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/script/install/install_OSX_dependency.sh b/script/install/install_OSX_dependency.sh index 3480572..8319814 100755 --- a/script/install/install_OSX_dependency.sh +++ b/script/install/install_OSX_dependency.sh @@ -25,23 +25,21 @@ sudo su - postgres -c "CREATE EXTENSION postgis;\nCREATE EXTENSION postgis_topol # Install Dependencies #-------------------------------------------------- echo "\n--- Installing Python 3 + pip3 --" -brew install git python3 wget pyenv +brew install git python3 wget brew link git brew link wget + +echo "\n--- Installing extra --" +brew install parallel echo "\n---- Installing nodeJS NPM and rtlcss for LTR support ----" brew install nodejs npm openssl sudo npm install -g rtlcss sudo npm install -g less sudo npm install -g prettier sudo npm install -g prettier @prettier/plugin-xml -yes n|pyenv install 3.7.16 -pyenv local 3.7.16 echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc -echo -e "\n---- Installing poetry for reliable python package ----" -curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - #-------------------------------------------------- # Install Wkhtmltopdf if needed #--------------------------------------------------