前提・実現したいこと
python(JupyterNotebook)でMeCabを活用して、
文章の品詞分解をしたいと思っているのですが、
エラーが出てしまい、ご教示いただけると幸いです。
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- 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-1-5ea2dbb578fb> in <module> 1 import MeCab 2 ----> 3 tagger = MeCab.Tagger("-Ochasen") 4 result = tagger.parse("私は東京に住んでいます。") 5 print(result) ~\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 [!tmp.empty()] unknown format type [chasen] ----------------------------------------------------------
該当のソースコード
import MeCab tagger = MeCab.Tagger("-Ochasen") result = tagger.parse("私は東京に住んでいます。") print(result)
試したこと
MeCabはインストール済みです。
補足情報(FW/ツールのバージョンなど)
Python3.8.8
Windows10
を使用しております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/10 06:09