LoginSignup
0
1

More than 3 years have passed since last update.

Manjaro Linux に CardWirthPy Reboot をインストール

Posted at

はじめに

Windowsで大人気だったゲーム CardWirth (CardWirthPy Reboot) を Manjaro Linux にインストールした。

環境

  • Manjaro Linux 18.0.4 Illyria

インストール&起動

$ sudo pacman -S unzip
$ sudo pacman -S mercurial python-pip
$ pip3 install --user pathlib2
$ pip3 install --user wxpython
$ pip3 install --user pygame
$ pip3 install --user lhafile
$ hg clone https://bitbucket.org/k4nagatsuki/cardwirthpy-reboot
$ cd cardwirthpy-reboot
$ wget https://bitbucket.org/k4nagatsuki/cardwirthpy-reboot/downloads/skin_classic_20180303.zip
$ unzip skin_classic_20180303.zip
$ ./cardwirthpy.sh

コメント

  • LANG=en_US.UTF-8 ではフォントが見つからずにエラーになるので、 LANG=ja_JP.UTF-8 ./cardwirthpy.shとして起動
  • もしかしたらフォントを入れる必要があるかもしれない。その時は、以下のようにフォントを入れる。
# フォントをインストール
$ mkdir ~/.fonts
$ cp Data/Font/*.ttf ~/.fonts
$ fc-cache -fv
  • フォントを入れると、Firefoxなどの日本語が表示されなくなることがあるので、そのときは再起動すると直る。

参考

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