Skip to content

Commit

Permalink
update installation info
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyxi authored Apr 17, 2024
1 parent 55866cd commit b87ef9d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions vignettes/a00_installation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ If `libpng` is missing install it via:
brew install libpng
```

If `Cairo` is missing install it via:

```sh
brew install cairo
```

If `libtiff` is missing install it via:

```sh
brew install libtiff
```

If `X11` is missing the error message will include the text:

```sh
Expand All @@ -63,3 +75,31 @@ apt install libfontconfig1-dev
```sh
dnf install fontconfig-devel
```

To support additional plot file formats (PDF, EPS, PS) optionally, the `Cairo` library is required.

#### Debian, Ubuntu, etc.

```sh
apt install libcairo2-dev
```

#### Fedora, CentOS, RHEL, etc.

```sh
dnf install cairo-devel
```

To support additional TIFF formats optionally, the `libtiff` library is required.

#### Debian, Ubuntu, etc.

```sh
apt install libtiff-dev
```

#### Fedora, EPEL, etc.

```sh
dnf install libtiff-devel
```

0 comments on commit b87ef9d

Please sign in to comment.