-
Notifications
You must be signed in to change notification settings - Fork 2
/
requirements.apt
57 lines (47 loc) · 1.76 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
# *****************************************************************************
# requirements.apt
# *****************************************************************************
# Purpose:
# This file lists all the packages from the Advanced Packaging Tool that are
# required by RAPID2, and is used by the "apt-get" software.
# Author:
# Cedric H. David, 2024-2024
# *****************************************************************************
# 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.11
# binary libraries for python3.11
python3.11-venv
# virtual environment for python3.11
# -----------------------------------------------------------------------------
# Code testing
# -----------------------------------------------------------------------------
wget
# download utility
ca-certificates
# certificate authority
unzip
# file extraction
netcdf-bin
# netCDF binaries
time
# time utility
#*******************************************************************************
#End
#*******************************************************************************