Sha256: 1657e4c973db10ae08cae260f544745b39e41115a9746616b9dbf38631d9a5bf

Contents?: true

Size: 956 Bytes

Versions: 4

Compression:

Stored size: 956 Bytes

Contents

---
sort: 1
---

# Installation

1. Add `jekyll_picture_tag` to your Gemfile in the `:jekyll_plugins` group.

    ```note
    It's NOT `jekyll-picture-tag`.
    ```

    ```ruby
    # Gemfile

    gem 'jekyll', ~> '4.0'

    group :jekyll_plugins do
      # (other jekyll plugins)
      gem 'jekyll_picture_tag', ~> '2.0'
    end
    ```

2. Run `$ bundle install`
3. Install `libvips`. Most package managers know about it, otherwise it can be found
   [here](https://libvips.github.io/libvips/install.html).
4. Install libvips dependencies for all image formats you will use, such as `libpng`, `libwebp`,
   `libjpeg`, and `libheif` (for avif). Note that if you use a deployment or CI service, these
   dependencies will be required there as well.
5. Optional: Install `ImageMagick` for additional image formats. If vips runs into an image format
   it can't handle (jp2 on my particular installation), JPT will instruct it to try ImageMagick
   instead.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll_picture_tag-2.0.3 docs/users/installation.md
jekyll_picture_tag-2.0.2 docs/users/installation.md
jekyll_picture_tag-2.0.1 docs/users/installation.md
jekyll_picture_tag-2.0.0 docs/users/installation.md