0
1

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 3 years have passed since last update.

from TkinterDnD2 import * でエラー

Posted at

#環境
Windows 10 Pro
Python version: 3.8.8
PyCharm Community Edition 2021.3.4

#エラー
Tkinterで、canvasにドラッグアンドドロップ機能を実装したく、いろいろ調べると、以下の通りにモジュールをインポートする必要が出た。

examin.py
import TkinterDnD2

しかしながら、

ModuleNotFoundError: No module named 'TkinterDnD2'

とエラーが出てしまった。おかしい、、確かにTkinterDnD2をインストールしたはず、、

#対処法
たまたま、他のコードをしていると、tkinterを使用する際に、予測変換にtkinterdnd2とでてきた。
これは!と思い、すべて小文字にしてインポートすると、

examin2.py
import tkinterdnd2

行けた!!

#コメント
まさか、大文字と小文字で、、
どなたかの、お力になれれば幸いです!
なんか、インポートおじさんになって気がする、、(笑)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?