0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

macOSにqpdfをインストール

Last updated at Posted at 2021-05-17

Homebrewで入るそう.

brew install qpdf

qpdfをM1 MacBookにインストールする.

  • OS: macOS Big Sur(Version 11.2.3)
  • Homebrew 3.1.7
  • qpdf v10.3.2

手順

(1) 以下のURLから最新版のリリースをダウンロードする.

(2) tar.gzを展開する.

cd ~/Downloads/
tar xvf qpdf-10.3.2.tar.gz

(3) includeにsymlinkを作成する.

cd /usr/local
sudo ln -s /opt/homebrew/include/ include

(4) インストールする.

cd ~/Downloads/qpdf-10.3.2/
./configure
make -j $(nproc)
make install

(5) インストールできたか確かめる.

$ which qpdf
/usr/local/bin/qpdf
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?