プログラミング初心者です。
import MeCab tagger = MeCab.Tagger() text = 'すもももももももものうち' words = tagger.parse(text) words
上記のコードを実行したところ、
下記のエラーが出てしまいます。
--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) ~/opt/anaconda3/lib/python3.9/site-packages/MeCab/__init__.py in __init__(self, rawargs) 132 try: --> 133 super(Tagger, self).__init__(args) 134 except RuntimeError as ee: RuntimeError: The above exception was the direct cause of the following exception: RuntimeError Traceback (most recent call last) /var/folders/fq/vtgtltzn4m7f0w2dl83lztp00000gn/T/ipykernel_12011/3957946321.py in <module> 1 import MeCab ----> 2 tagger = MeCab.Tagger() 3 text = 'すもももももももものうち' 4 words = tagger.parse(text) 5 words ~/opt/anaconda3/lib/python3.9/site-packages/MeCab/__init__.py in __init__(self, rawargs) 133 super(Tagger, self).__init__(args) 134 except RuntimeError as ee: --> 135 raise RuntimeError(error_info(rawargs)) from ee 136 137 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: [ifs] no such file or directory: /Users/coolthick/opt/anaconda3/lib/python3.9/site-packages/unidic/dicdir/mecabrc ----------------------------------------------------------
自分でもパスを指定したり、辞書をインストールしたりと色々試したのですがダメでした。
些細なことでもいいので、ご指摘いただけると幸いです。
よろしくお願い致します。
> 辞書をインストールしたりと色々試したのですが
一番欲しい情報が省略されています。
unidicをインストールしただけでダウンロードをしてないと出るエラーかも、という感じはしますが(調べてはないです)
回答1件
あなたの回答
tips
プレビュー