【Mac】Selenium/jupyter notebook/Chromedriver install 방법
Selenium install 방법
작업할 폴더로 경로를 통과시킵니다.
예: desktop work 폴더로 경로를 통과한다면
1. Terminal을 열어 cd ~/Desktop/work
2. Terminal에 pwd
를 입력하여 경로가 올바른지 확인
pip를 사용하는 경우
pip3 install Selenium
Anaconda를 사용하는 경우
conda install Selenium
jupyter notebook install 방법
pip 사용하는 경우
pip install jupyter
Anaconda를 사용하는 경우
conda install jupyter
아래 URL이 표시되는지 확인
http://localhost:8888/tree
표시되어 있으면 아래 이미지의 "NEW"를 클릭하여 새로운 notebook을 작성.
chromedriver install 방법
brew install chromedriver
그러나 내 환경에서는 다음 오류가 발생했기 때문에
오류 메시지에 따라 다음 명령을 입력brew cask install chromedriver
그러나 아래와 같이 경고가 나왔기 때문에
경고에 따라 다음 명령을 입력brew cask reinstall chromedriver
분명히 이전에 chromedriver가 설치된 것 같습니다.
어쨌든, chromedriver를 reinstall.
chromedriver 설치 확인
jupyternotebook에 다음을 입력하십시오.
from selenium import webdriver
browser = webdriver.Chrome()
이 작업을 수행하고 Chrome 브라우저가 시작되면 설치 성공
Reference
이 문제에 관하여(【Mac】Selenium/jupyter notebook/Chromedriver install 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/GmossP/items/df797f1eb845f4724428
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
pip 사용하는 경우
pip install jupyter
Anaconda를 사용하는 경우
conda install jupyter
아래 URL이 표시되는지 확인
http://localhost:8888/tree
표시되어 있으면 아래 이미지의 "NEW"를 클릭하여 새로운 notebook을 작성.
chromedriver install 방법
brew install chromedriver
그러나 내 환경에서는 다음 오류가 발생했기 때문에
오류 메시지에 따라 다음 명령을 입력brew cask install chromedriver
그러나 아래와 같이 경고가 나왔기 때문에
경고에 따라 다음 명령을 입력brew cask reinstall chromedriver
분명히 이전에 chromedriver가 설치된 것 같습니다.
어쨌든, chromedriver를 reinstall.
chromedriver 설치 확인
jupyternotebook에 다음을 입력하십시오.
from selenium import webdriver
browser = webdriver.Chrome()
이 작업을 수행하고 Chrome 브라우저가 시작되면 설치 성공
Reference
이 문제에 관하여(【Mac】Selenium/jupyter notebook/Chromedriver install 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/GmossP/items/df797f1eb845f4724428
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(【Mac】Selenium/jupyter notebook/Chromedriver install 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/GmossP/items/df797f1eb845f4724428텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)