Linux

[Linux] 리눅스, 우분투 Chrome Driver 설치

IT-PAPA 2023. 1. 11. 21:54
728x90
반응형

필자는 우분투 서버에 크롬 드라이버를 설치하기 위해 아래와 같이 설치를 완료하였다.

설치하는 이유는 파이썬 selenium 을 사용하기 위해 구글 크롬과 크롬 드라이버가 필요하기 때문이다

# 구글 크롬 다운로드 명령어
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 

# 구글 크롬 설치 명령어
$ sudo apt install ./google-chrome-stable_current_amd64.deb 

# 구글 크롬 버전 확인
$ google-chrome --version

 

구글 크롬 다운로드 및 설치 명령어 실행시 화면

크롬 드라이버 다운로드 사이트

 

Downloads - ChromeDriver - WebDriver for Chrome

WebDriver for Chrome

sites.google.com

ChromeDriver - WebDriver for Chrome - Downloads (google.com)

 

ChromeDriver - WebDriver for Chrome - Downloads

Current Releases If you are using Chrome version 110, please download ChromeDriver 110.0.5481.30 If you are using Chrome version 109, please download ChromeDriver 109.0.5414.74 If you are using Chrome version 108, please download ChromeDriver 108.0.5359.71

sites.google.com

 

원하는 버전을 클릭하도록 하자.

 

리눅스 버전의 목록을 우클릭하고, 링크 복사를 클릭한다.

 

크롬 드라이브 다운로드 및 압축 해제 명령어

# 크롬 드라이버 파일 받기
$ wget https://chromedriver.storage.googleapis.com/94.0.4606.41/chromedriver_linux64.zip
$ wget https://chromedriver.storage.googleapis.com/94.0.4606.41/chromedriver_mac64.zip
$ wget https://chromedriver.storage.googleapis.com/94.0.4606.41/chromedriver_mac64_m1.zip
$ wget https://chromedriver.storage.googleapis.com/94.0.4606.41/chromedriver_win32.zip

# 압축 해제
unzip chromedriver_linux64.zip

 

하지만 필자는 라즈베리파이4 arm64 용으로도 사용하기 때문에 아래와 같이 크롬브라우저와 크롬드라이브를 간단하게 설치할 수 있다

# arm64용 크롬 브라우저와 크롬드라이버를 한번에 설치
$ sudo apt install chromium-browser/stable chromium-chromedriver/stable

# chromedriver 위치
$ which chromedriver
728x90
반응형
LIST