-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathinstall_su2.sh
executable file
·38 lines (27 loc) · 1.01 KB
/
install_su2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Script to install SU2 on Ubuntu 20.04 and Mint 20.3
su2_version="7.3.0"
current_dir="$(pwd)"
# Get install dir from input if it exists
if [ $# -gt 0 ]; then
install_dir="$1/INSTALLDIR"
else
install_dir="$(pwd)/../../INSTALLDIR"
fi
echo "Creating install directory..."
mkdir -p "$install_dir"
cd "$install_dir"
echo "Downloading SU2..."
wget https://github.com/su2code/SU2/releases/download/v"$su2_version"/SU2-v"$su2_version"-linux64-mpi.zip
unzip -d SU2-v"$su2_version"-linux64-mpi SU2-v"$su2_version"-linux64-mpi.zip
echo "Adding path to the .bashrc"
su2_run_path=/"$install_dir"/SU2-v"$su2_version"-linux64-mpi/bin
su2_home_path=/"$install_dir"/SU2-v"$su2_version"-linux64-mpi
echo \# SU2 Path >> ~/.bashrc
echo export SU2_RUN=\""$su2_run_path"\" >> ~/.bashrc
echo export SU2_HOME=\""$su2_home_path"\" >> ~/.bashrc
echo export PYTHONPATH=\$PYTHONPATH:\$SU2_RUN >> ~/.bashrc
echo export PATH=\"\$PATH:\$SU2_RUN\" >> ~/.bashrc
echo "Installing MPICH..."
sudo apt install -y mpich
cd "$current_dir"