回答編集履歴
2
説明の追記
test
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
> 'module' object is not callable
|
2
|
+
|
3
|
+
|
4
|
+
|
1
5
|
これ見てください
|
2
6
|
|
3
7
|
[python3,chromeのスクレイピングについて](https://teratail.com/questions/193331)
|
@@ -14,7 +18,7 @@
|
|
14
18
|
|
15
19
|
brew install chromedriver
|
16
20
|
|
17
|
-
でインストールしたchromedriverがMacのどこにあるのかを探して、
|
21
|
+
でインストールした「chromedriver」がMacのどこにあるのかを探して、
|
18
22
|
|
19
23
|
```python
|
20
24
|
|
1
コード追加
test
CHANGED
@@ -1,3 +1,43 @@
|
|
1
1
|
これ見てください
|
2
2
|
|
3
3
|
[python3,chromeのスクレイピングについて](https://teratail.com/questions/193331)
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
.
|
8
|
+
|
9
|
+
> No such file or directory: 'chromedriver'
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
となったら、
|
14
|
+
|
15
|
+
brew install chromedriver
|
16
|
+
|
17
|
+
でインストールしたchromedriverがMacのどこにあるのかを探して、
|
18
|
+
|
19
|
+
```python
|
20
|
+
|
21
|
+
webdriver.Chrome()
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
の部分を
|
26
|
+
|
27
|
+
```python
|
28
|
+
|
29
|
+
webdriver.Chrome(executable_path='chromedriverの絶対パス')
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
に変えてください
|
34
|
+
|
35
|
+
たとえば、
|
36
|
+
|
37
|
+
```python
|
38
|
+
|
39
|
+
webdriver.Chrome(executable_path='/usr/local/bin/chromedriver')
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
みたいに
|