おれさまラボ

実際に手を動かして理解を深めるブログ。

Pandoc のインストール方法

はじめに

Pandoc はドキュメントフォーマットを変換するためのオープンソース ソフトウェアです。たとえば、Markdown 形式のファイルを PDF や Word ファイルに変換することができます。まさにアーミーナイフのように、あらゆるフォーマットのドキュメントファイルを相互変換できることが特徴です。久々に PC 環境を整える必要が出てきたので、備忘として残しておきます。

インストール方法

パッケージの検索

Windows 純正のパッケージ管理システムである winget が使えます。winget search コマンドを使用して Pandoc を検索します。

$ winget search pandoc
名前        ID                               バージョン 一致        ソース
--------------------------------------------------------------------------
Pandoc      JohnMacFarlane.Pandoc            2.18                   winget
Pandoc GUI  Ombrelin.PandocGui               1.1.35     Tag: pandoc winget
Quarto      RStudio.quarto                   1.0.36     Tag: pandoc winget
pandoc-plot LaurentPRenedeCotret.pandoc-plot 1.5.4                  winget

インストール

ID を指定してインストールします。

$ winget install JohnMacFarlane.Pandoc

⚠:インストール途中に、Pandoc インストーラのウィンドウが起動します。

インストール結果の確認

インストールが完了したら、正常にインストールされているか version コマンドを使用して確認します。

$ pandoc --version
pandoc.exe 2.18
Compiled with pandoc-types 1.22.2, texmath 0.12.5, skylighting 0.12.3,
citeproc 0.7, ipynb 0.2, hslua 2.2.0
Scripting engine: Lua 5.4
User data directory: C:\Users\ITS10313\AppData\Roaming\pandoc
Copyright (C) 2006-2022 John MacFarlane. Web:  https://pandoc.org
This is free software; see the source for copying conditions. There is no
warranty, not even for merchantability or fitness for a particular purpose.

以上