From 84175d61d6f44d0db2abb42d67c6c4213762b64f Mon Sep 17 00:00:00 2001 From: Daniel Cartwright Date: Tue, 31 Aug 2021 17:19:10 -0700 Subject: [PATCH] Specify that you need to install PCRE headers on linux as well Summary: Some users have been confused by this in the past. Reviewed By: stroxler Differential Revision: D30685469 fbshipit-source-id: a4c190a4a2bc0c02cd9711422934bde27f9ec116 --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7dc3fd4d..31157b19 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,9 @@ Duckling is a Haskell library that parses text into structured data. A Haskell environment is required. We recommend using [stack](https://haskell-lang.org/get-started). -On macOS you'll need to install PCRE development headers. -The easiest way to do that is with [Homebrew](https://brew.sh/): +On Linux and MacOS you'll need to install PCRE development headers. +On Linux, use your package manager to install them. +On MacOS, the easiest way to install them is with [Homebrew](https://brew.sh/): ``` brew install pcre ```