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 | |
| ### prerequisites | |
| sudo yum groupinstall "Development Tools" -y | |
| # git --version | |
| # gcc --version | |
| # bash --version | |
| # python --version # (system) | |
| sudo yum install @development zlib-devel bzip2 bzip2-devel readline-devel sqlite \ | |
| sqlite-devel openssl-devel xz xz-devel libffi-devel findutils -y | |
| sudo yum update -y |