質問編集履歴

1

問題点に関する訂正、追加

2019/04/30 02:15

投稿

Kirinbeer
Kirinbeer

スコア11

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
 
12
12
 
13
+ Tkinterやmatplotlibなどのモジュールもidle上でのみインポートできない。
14
+
15
+
16
+
13
17
  質問者の知識は雀の涙程度。
14
18
 
15
19
 
@@ -96,7 +100,43 @@
96
100
 
97
101
 
98
102
 
99
- のエラーメッセージが出る
103
+ のエラーメッセージが出る.
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+ ```
114
+
115
+ import matplotlib
116
+
117
+ ```
118
+
119
+
120
+
121
+ の場合は
122
+
123
+
124
+
125
+ ```
126
+
127
+ Traceback (most recent call last):
128
+
129
+ File "<pyshell#2>", line 1, in <module>
130
+
131
+ import matplotlib
132
+
133
+ ModuleNotFoundError: No module named 'matplotlib'
134
+
135
+ ```
136
+
137
+
138
+
139
+ と出る。
100
140
 
101
141
 
102
142