1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WordCloudで使用するフォントファイルをMacのDockerに用意する。

Posted at

すぐ忘れそうなので、自分用メモ

Wordcloudをインストール

requirement.txt
wordcloud
Dockerfile
FROM python:3
ENV PYTHONUNBUFFERED 1
RUN apt-get update
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . /code/

参照するフォントファイルをDocker内にコピー

  1. FontBookを開く(必要ならフォントファイルをインストールする)
    スクリーンショット 2024-03-28 22.53.50.png
  2. Finderで表示し、WordCloudで使用するファイルをDocker内にコピーする。
    スクリーンショット 2024-03-28 22.54.33.png
  3. WordCloudのfont_pathから参照する。
WordCoud.py
fpath = 'ヒラギノ明朝 ProN.ttc'
wc = WordCloud(background_color='white',
                   font_path=fpath,
                   width=800, height=800,
                   stopwords=stopwords)

参考資料
MacのFont Bookでフォントをインストールして検証する
Macにフォントを追加する方法
Dockerコンテナに好きなフォントをインストールする方法
歌詞を形態素解析→WordCloud化したら曲名が分かる…かも?

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?