Created
June 22, 2022 19:12
-
-
Save Dirack/953a377af1d5c3a10c890dda512c1bd5 to your computer and use it in GitHub Desktop.
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 | |
# Instalar dependências | |
DEPENDENCIAS="libxaw7-dev freeglut3-dev libnetpbm10-dev libgd-dev libplplot-dev libavcodec-dev libcairo2-dev libjpeg-dev swig python-dev python-numpy g++ gfortran libopenmpi-dev libfftw3-dev libsuitesparse-dev python-epydoc scons git emacs25" | |
echo -e "Instalar dependências...\n" | |
for i in $DEPENDENCIAS | |
do | |
echo "...Instalando $i" | |
sudo apt-get install -y "$i" 1>/dev/null | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment