Pythonを使用してWordCloud(テキストマイニング)を行いたいのですが、以下のコードを実行すると下段のエラーメッセージが表示され、止まってしまいます。
どうすれば動作するのでしょうか・・・何か足りないソフトがあるのでしょうか・・??
もし分かる方がいらっしゃったら、ご教示を頂きたいです。
よろしくお願いします。
※【その②】としているのは、私から類似タイトル(その①)で別内容の質問をしているため
※「text」の中身は仮の内容です
#!/usr/bin/env python import os print(os.getcwd()) # coding: utf-8 from wordcloud import WordCloud text = "Chief Justice Roberts, President Carter, President Clinton, President \ Bush, President Obama, fellow Americans, and people of the world: \ thank you. We, the citizens of America, are now joined in a great \ national effort to rebuild our country and to restore its promise for \ all of our people." wordcloud = WordCloud(background_color="white", font_path="/usr/share/fonts/truetype/takao-gothic/TakaoPGothic.ttf", width=800,height=600).generate(text) wordcloud.to_file("./wordcloud_sample.png")
◆ ◆ ◆ 以下、エラーメッセージ ◆ ◆ ◆
C:\python Traceback (most recent call last): File "C:/python/11b_wordcloud.py", line 16, in <module> width=800,height=600).generate(text) File "C:/python\wordcloud\wordcloud.py", line 605, in generate return self.generate_from_text(text) File "C:/python\wordcloud\wordcloud.py", line 587, in generate_from_text self.generate_from_frequencies(words) File "C:/python\wordcloud\wordcloud.py", line 426, in generate_from_frequencies max_font_size=self.height) File "C:/python\wordcloud\wordcloud.py", line 473, in generate_from_frequencies font = ImageFont.truetype(self.font_path, font_size) File "C:\Python37\lib\site-packages\PIL\ImageFont.py", line 280, in truetype return FreeTypeFont(font, size, index, encoding, layout_engine) File "C:\Python37\lib\site-packages\PIL\ImageFont.py", line 145, in __init__ layout_engine=layout_engine) OSError: cannot open resource >>>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/01/08 10:24