forked from c-h-david/rapid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.apt
66 lines (56 loc) · 1.9 KB
/
requirements.apt
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#*******************************************************************************
#requirements.apt
#*******************************************************************************
#Purpose:
#This file lists all the packages from the Advanced Packaging Tool that are
#required by RAPID, and is used by the "apt-get" software.
#Author:
#Cedric H. David, 2017-2024.
#*******************************************************************************
#Usage
#*******************************************************************************
#sudo apt-get install -y $(grep -v -E '(^#|^$)' requirements.apt)
#can also use the '--no-install-recommends' flag
#*******************************************************************************
#Requirements for apt-get
#*******************************************************************************
#-------------------------------------------------------------------------------
#Code management
#-------------------------------------------------------------------------------
git
#version control system
vim
#text editor
#-------------------------------------------------------------------------------
#Code building
#-------------------------------------------------------------------------------
gcc
#compiler for C
gfortran
#compiler for Fortran
python3
#interpreter for Python
make
#compilation orchestration
libnetcdf-dev
#netCDF C libraries
libnetcdff-dev
#netCDF Fortran libraries
netcdf-bin
#netCDF binaries
python3-distutils
#needed for PETSc
#-------------------------------------------------------------------------------
#Code testing
#-------------------------------------------------------------------------------
wget
#download utility
ca-certificates
#certificate authority
bc
#basic calculator
nco
#netCDF operators
#*******************************************************************************
#End
#*******************************************************************************