前提・実現したいこと
プログラミング初心者です。
JupyterLabを使ってPythonで形態素解析を行おうとしています。
https://analysis-navi.com/?p=2167
このサイトを参考に
f = open('kokoro.txt',encoding="utf-8") text = f.read() f.close() #MeCabで分割 import MeCab m = MeCab.Tagger ('-Ochasen') node = m.parseToNode(text) words=[] while node: words.append(node.surface) node = node.next
とコーディングして形態素分析の途中まで実行してみたのですが、
RuntimeError と表示されて原因がわかりません。
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) ~\anaconda3\lib\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) <ipython-input-25-4fa343393f7a> in <module> 5 #MeCabで分割 6 import MeCab ----> 7 m = MeCab.Tagger ('-Ochasen') 8 9 node = m.parseToNode(text) ~\anaconda3\lib\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: -Ochasen [ifs] no such file or directory: c:\mecab\mecabrc ----------------------------------------------------------
該当のソースコード
Python
f = open('kokoro.txt',encoding="utf-8") text = f.read() f.close() #MeCabで分割 import MeCab m = MeCab.Tagger ('-Ochasen') node = m.parseToNode(text) words=[] while node: words.append(node.surface) node = node.next
とコーディングして形態素分析の途中まで実行してみたのですが、
RuntimeError と表示されて原因がわかりません。
### 試したこと 何を試してよいのかわかっておりません。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー