This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| SUPERSET_DIR=~/superset | |
| sudo apt-get update -y # update package | |
| sudo apt-get install build-essential libssl-dev libffi-dev python-pip libsasl2-dev libldap2-dev default-libmysqlclient-dev -y # install package | |
| sudo apt-get install python3-pip python3.10-venv -y # install package | |
| [ ! -d $SUPERSET_DIR ] && mkdir $SUPERSET_DIR |
OlderNewer