-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrequirements.apt
64 lines (55 loc) · 2.03 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
#*******************************************************************************
#requirements.apt
#*******************************************************************************
#Purpose:
#This file lists all the packages from the Advanced Packaging Tool that are
#required by RRR, and is used by the "apt-get" software.
#Author:
#Cedric H. David, 2017-2023
#*******************************************************************************
#Usage
#*******************************************************************************
#sudo apt-get install -y $(grep -v -E '(^#|^$)' requirements.apt)
#*******************************************************************************
#Requirements for apt-get
#*******************************************************************************
#-------------------------------------------------------------------------------
#Code management
#-------------------------------------------------------------------------------
git
#version control system
vim
#text editor
zip
#file compression
#-------------------------------------------------------------------------------
#Code building
#-------------------------------------------------------------------------------
python3.9-dev
#Includes binary libraries (python3.9) and header files (python3.9-dev)
python3-distutils
#python3 support for building and installing additional modules
g++
#includes C (gcc) and C++ (g++) compilers
libgdal-dev
#files needed to develop a software that use GDAL/OGR
libspatialindex-dev
#spatial indexing methods, needed for rtree
ffmpeg
#multimedia file transcoding
nco
#netCDF operators
#-------------------------------------------------------------------------------
#Code testing
#-------------------------------------------------------------------------------
wget
#download utility
ca-certificates
#certificate authority
unzip
#file extraction
netcdf-bin
#netCDF binaries
#*******************************************************************************
#End
#*******************************************************************************