質問編集履歴
3
試したことを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,9 +31,7 @@
|
|
31
31
|
```
|
32
32
|
|
33
33
|
### 試したこと
|
34
|
-
|
35
|
-
|
34
|
+
情報を調べてみましたが見つかりませんでした。
|
36
35
|
|
37
36
|
### 補足情報(FW/ツールのバージョンなど)
|
38
37
|
macOS 13.2
|
39
|
-
|
2
エラー内容の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,6 +9,18 @@
|
|
9
9
|
|
10
10
|
```
|
11
11
|
エラーメッセージ
|
12
|
+
---------------------------------------------------------------------------
|
13
|
+
ModuleNotFoundError Traceback (most recent call last)
|
14
|
+
/var/folders/1b/4r83ph916kb86bjsvm74d7740000gn/T/ipykernel_2018/385921064.py in <module>
|
15
|
+
----> 1 import tkinter
|
16
|
+
|
17
|
+
/usr/local/Cellar/python@3.9/3.9.15/Frameworks/Python.framework/Versions/3.9/lib/python3.9/tkinter/__init__.py in <module>
|
18
|
+
35 import types
|
19
|
+
36
|
20
|
+
---> 37 import _tkinter # If this fails your Python may not be configured for Tk
|
21
|
+
38 TclError = _tkinter.TclError
|
22
|
+
39 from tkinter.constants import *
|
23
|
+
|
12
24
|
ModuleNotFoundError: No module named '_tkinter'
|
13
25
|
```
|
14
26
|
|
1
jupyter nptebookの文言を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
### 実現したいこと
|
2
2
|
|
3
|
-
tkinterを使いたい
|
3
|
+
jupyter notebookでtkinterを使いたい
|
4
4
|
|
5
5
|
### 前提
|
6
6
|
tkinterをインポートすると見つからないとエラーが出る。
|