jupyter notebook
言語と開発環境へ戻る。
概要
ブラウザからpythonをはじめとするいくつかのプログラミング言語が操れるツールです。管理人はVirtualBoxの中のUbuntu12.04 LTSにpython2.7とpython3.6.1をインストールしanaconda3-4.3.1を使っています。
エラーとその対処
- エラー
- はじめてmatplotlibを使ったグラフを描いたときに出たエラーです。
font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment. warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
- 対策
- キャッシュを削除するといいらしいということでやってみたら解決しました。
rm -rf ~/.cache/matplotlib
言語と開発環境へ戻る。