macOSでGRASSが起動しない

ロケールの設定をGrass.shに追加したら起動した

/Applications/GRASS-8.3.app/Contents/MacOS/Grass.sh

  1 #! /bin/bash
  2 #############################################################################
  3 #
  4 # MODULE:     GRASS Initialization
  5 # AUTHOR(S):  Justin Hickey - Thailand - jhickey@hpcc.nectec.or.th
  6 #             William Kyngesburye - kyngchaos@kyngchaos.com
  7 #             Eric Hutton
  8 #             Michael Barton - michael.barton@asu.edu
  9 # PURPOSE:    The source file for this shell script is in
 10 #           macosx/app/grass.sh.in and is the grass startup script for
 11 #               the Mac OS X application build.
 12 # COPYRIGHT:    (C) 2000-2018 by the GRASS Development Team
 13 #
 14 #               This program is free software under the GNU General Public
 15 #           License (>=v2). Read the file COPYING that comes with GRASS
 16 #           for details.
 17 #
 18 #############################################################################
 19
## 以下を追加 
 20 export LC_ALL=en_US.UTF-8
 21 export LANG=en_US.UTF-8