blob: 71e685dba0072a22eacc0babe6e5c5261764d725 (
plain) (
blame)
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
|
# Installation
::::{tab-set}
:::{tab-item} PyPi (pip)
The tool can be installed from PyPi with
```bash
pip install -U sec-certs
```
Note, that `Python>=3.8` is required.
:::
:::{tab-item} Docker
The tool can be pulled as a docker image with
```bash
docker pull seccerts/sec-certs
```
:::
:::{tab-item} Build from sources
The stable release is also published on [GitHub](https://github.com/crocs-muni/sec-certs/releases) from where it can be setup for development with
```bash
python3 -m venv venv
source venv/bin/activate
pip install -e .
```
Alternatively, our Our [Dockerfile](https://github.com/crocs-muni/sec-certs/blob/main/Dockerfile) represents a reproducible way of setting up the environment.
:::
::::
If you're not using Docker, you must install the dependencies as described below.
## Dependencies
- [Java](https://www.java.com/en) is needed to parse tables in FIPS pdf documents, must be available from `PATH`.
- Some imported libraries have non-trivial dependencies to resolve:
- [pdftotext](https://github.com/jalan/pdftotext) requires [Poppler](https://poppler.freedesktop.org/) to be installed. We've experienced issues with older versions of Poppler (`0.x`), make sure to install `20.x` version of these libraries.
- [graphviz](https://pypi.org/project/graphviz/) requires `graphviz` to be on the path
|