Google colaboratoryでCSVファイルの形態要素解析を以下のコードで行いました。
すると、RuntimeErrorが発生しました。
(※以前にtextファイルをmecab-python3==0.7で解析したところ正常に作動しました。その際はf = open('〇〇.txt',encoding='UTF-8-SIG')を使用し、そのほかは同じコードでした。textとCSVでは方法が異なるのでしょうか・・・)
調べた範囲では、「error message: [ifs] no such file or directory: /usr/local/etc/mecabrc」⇒mecabrcが見つからない という意味は解ったのですが、Colaboratoryではどのように解決して良いかわかりません。
みなさんのお力をお借りしたいと思います。
どうかよろしくお願いします。
!apt install aptitude !aptitude install mecab libmecab-dev mecab-ipadic-utf8 git make curl xz-utils file -y !pip install mecab-python3==0.7 import csv f = open("/content/Book1.csv", "r", encoding="ms932", errors="", newline="" ) text = f.read() #ファイル終端まで全て読んだデータを返す f.close() #MeCabで分割 import MeCab mecab = MeCab.Tagger("-Ochasen") mecab.parse("") node = mecab.parseToNode(text) words=[] #指定した品詞(名刺・動詞・形容詞)のみ表示 while node: hinshi = node.feature.split(",")[0] if hinshi in ["名詞","動詞","形容詞"]: origin = node.feature.split(",")[6] words.append(origin) node = node.next #単語の数カウント import collections c = collections.Counter(words) print(c.most_common(30))
エラー内容はこちらです。
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 error message: [ifs] no such file or directory: /usr/local/etc/mecabrc --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) <ipython-input-26-9df7a809870e> in <module>() 7 #MeCabで分割 8 import MeCab ----> 9 mecab = MeCab.Tagger("-Ochasen") 10 11 mecab.parse("") /usr/local/lib/python3.7/dist-packages/MeCab/__init__.py in __init__(self, rawargs) RuntimeError:
回答1件
あなたの回答
tips
プレビュー