Skip to content

Update Readme based on debian/ubuntu command #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,18 @@ how to resize and process images.

1. Install ImageMagick and/or libvips:

```sh
In a Mac terminal:

```sh
$ brew install imagemagick vips
```

In a debian/ubuntu terminal:

```sh
$ sudo apt install imagemagick libvips
```

2. Add the gem to your Gemfile:

```rb
Expand Down Expand Up @@ -181,10 +189,17 @@ pipeline

Our test suite requires both `imagemagick` and `libvips` libraries to be installed.

In a Mac terminal:

```
$ brew install imagemagick vips
```

In a debian/ubuntu terminal:
```shell
sudo apt install imagemagick libvips
```

Afterwards you can run tests with

```
Expand Down