質問編集履歴
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,51 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
from module.site.site import Site
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
https://qiita.com/haminiku/items/227489e7a9ade9167fb1
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
上記サイトを参考にしており、一度自分のPCから対応してみたのですが下記のようなエラーメッセージがでております。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
---------------------------------------------------------------------------
|
22
|
+
|
23
|
+
ModuleNotFoundError Traceback (most recent call last)
|
24
|
+
|
25
|
+
<ipython-input-11-e3169088a414> in <module>()
|
26
|
+
|
27
|
+
8 import asyncio
|
28
|
+
|
29
|
+
9 import aiohttp
|
30
|
+
|
31
|
+
---> 10 from module.site.site import Site
|
32
|
+
|
33
|
+
11
|
34
|
+
|
35
|
+
12
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
ModuleNotFoundError: No module named 'module'
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
---------------------------------------------------------------------------
|
44
|
+
|
45
|
+
NOTE: If your import is failing due to a missing package, you can
|
46
|
+
|
47
|
+
manually install dependencies using either !pip or !apt.
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
To view examples of installing some common dependencies, click the
|
52
|
+
|
53
|
+
"Open Examples" button below.
|
54
|
+
|
55
|
+
---------------------------------------------------------------------------
|