Skip to content

Commit

Permalink
Fix missing dependencies in README.md (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitaliySerov authored Oct 18, 2024
1 parent 44a8240 commit 0688c45
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

## Fixes

* Fix missing dependencies in README.md

## 0.6.0 (2024-05-17)

### New Features
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,26 @@ It is gem for parsing pdf files.

## Installation

1. Install `pdfinfo` app, part of `poppler-utils`
This gem requires `pdfinfo` app, part of `poppler-utils`.\
Also `imagemagick` required.

1. Install system dependencies:

* Debian-Based Linux:

```shell script
sudo apt-get install poppler-utils
sudo apt-get install imagemagick \
libmagickwand-dev \
poppler-utils
```

* Fedora-Based Linux:

```shell script
sudo yum install poppler-utils
```
sudo dnf install ImageMagick \
ImageMagick-devel \
poppler-utils
```

2. Install gem by command:

Expand Down

0 comments on commit 0688c45

Please sign in to comment.