This file contains 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 | |
# Install essential build tools | |
sudo yum -y group install "Development Tools" | |
# Add EPEL repository | |
sudo yum -y install epel-release | |
# Install Python PIP and other required development libraries | |
sudo yum -y install python-devel python-pip libpng-devel freetype-devel lapack lapack-devel |