Sha256: 771c90928e0b0fbb33c77fea999a3b620d187160eb857a52a5bd73c6947b6a23

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.1.2 docs/users/installation.md
jekyll_picture_tag-2.1.1 docs/users/installation.md
jekyll_picture_tag-2.1.0 docs/users/installation.md
jekyll_picture_tag-2.0.4 docs/users/installation.md