Closed hiroshinoji closed 6 years ago
The cause is that in the default config shown by mecab --dump-config, the dicdir directory points to the common symlink /var/lib/mecab/dic/debian, by which Jigg cannot decide the dictionary setting. We should read the real path of this symlink.
mecab --dump-config
dicdir
/var/lib/mecab/dic/debian
This causes the problem on Mac, since readlink -f command that I added does not exist on Mac.
readlink -f
The cause is that in the default config shown by
mecab --dump-config
, thedicdir
directory points to the common symlink/var/lib/mecab/dic/debian
, by which Jigg cannot decide the dictionary setting. We should read the real path of this symlink.