mecabをインストールして簡単なテストコードでうまく機能しているか確認したところ
runtimeerror
が発生していてなかなか解決できません。
いろいろ調べてみて、こちらのページが一番解決に近いと思ったのですが、当方プログラミング初心者のため理解できず、立ち往生している状態です。
具体的に何をどうすれば良いかご教授いただけますでしょうか。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "/Users/user/.pyenv/versions/3.9.4/lib/python3.9/site-packages/MeCab/__init__.py", line 133, in __init__ super(Tagger, self).__init__(args) RuntimeError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/Users/user/github/me-cab/mecab.py", line 27, in <module> mecab = MeCab.Tagger ("-Ochasen") File "/Users/user/.pyenv/versions/3.9.4/lib/python3.9/site-packages/MeCab/__init__.py", line 135, in __init__ raise RuntimeError(error_info(rawargs)) from ee RuntimeError: ---------------------------------------------------------- Failed initializing MeCab. Please see the README for possible solutions: https://github.com/SamuraiT/mecab-python3#common-issues If you are still having trouble, please file an issue here, and include the ERROR DETAILS below: https://github.com/SamuraiT/mecab-python3/issues issueを英語で書く必要はありません。 ------------------- ERROR DETAILS ------------------------ arguments: -Ochasen [ifs] no such file or directory: /Users/user/.pyenv/versions/3.9.4/lib/python3.9/site-packages/unidic/dicdir/mecabrc ----------------------------------------------------------
該当のソースコード
python
1import MeCab 2 3mecab = MeCab.Tagger ("-Ochasen") 4testwords = "今日の天気は晴れです。" 5print(mecab.parse(testwords))
mecabまわりでインストールしたものとそのバージョン
mecab of 0.996 mecab-ipadic-NEologd swig 4.0.2 mecab-python3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/06 13:09
2021/07/06 13:16
2021/07/06 13:24
2021/07/06 13:34 編集
2021/07/06 13:35
2021/07/06 14:17
2021/07/06 14:53 編集
2021/07/06 15:08
2021/07/06 15:12 編集
2021/07/06 15:22