0
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?

More than 1 year has passed since last update.

20分でまとめる備忘録 import PySimpleGUIでいきなりエラー

Posted at

備忘録のきっかけ

PySimpleGUIをimportしようとしたらいきなり躓いたので

事象

pipでインストール後、

pip install pysimplegui
import PySimpleGUI as sg

と使おうとして失敗。

解決方法

Tkinterを入れたら直った。

brew install tcl-tk

PySimpleGUIはTkinterのラッパーらしく、sg内で使用する親コードがなかったためエラーが発生していた。
依存解決しないんだ、と一瞬思ったがnpcみたいなpackage.jsonがあるわけでもなく、直でimportするだけだから、そういうこともあるのかと納得はいった。ただ、パッケージの出自など気にしておかないと解決できないケースがありそう。

まとめ

パッケージの依存が入り込む可能性は常にある。パッケージの出自を調べると解決するかも

0
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
0
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?