1
1

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 5 years have passed since last update.

Windows10 に msys2 + pandoc をセットアップ

Last updated at Posted at 2015-11-07

インストーラ

msys2 から pacman -S pandoc できればいいんですけど、どうやらパッケージが提供されていないみたい。
とりあえず、使えればいいので、pancoc の github/release からインストールすることにしました :)

msys2

pacman で生活に必要なものをインストール

私には zsh, vim, git, ssh(openssh) が必要なのでインストール

$ pacman -S vim git zsh openssh

pacmanについてはこちらがわかりやすくて助かった。(yum 使ったことないケド...

zsh をログインシェルに

msys2 には chsh などというものはないので、/msys2_shell.bat を編集

$ vim /msys2_shell.bat
/msys2_shell.bat
- start %WD%mintty -i /msys2.ico /usr/bin/bash --login %*
+ start %WD%mintty -i /msys2.ico /usr/bin/zsh --login %*

msys2 のディレクトリ構成はどうなってる?

エクスプローラーで C:\msys64\ が msys2 の shell のルートディレクトリになります。

msys2 のからデスクトップのディレクトリに行くにはこんな感じ

$ cd /c/Users/hoge/Desktop/

msys.png

日本語が...??

msys2 上で右クリック → Options → Text でよしなに

msys.png

pandoc

普通にインストーラーでインストール完了しちゃいます。

なにもせずとも、msys2 から pandoc が使えるようになります。

pandoc.png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?