#설치파일 다운
$ wget <https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh>
#설치파일 실행
$ bash Anaconda3-2019.10-Linux-x86_64.sh
$ source ~/.bashrc
→ 터미널 라인 앞 (base)라고 적혀있으면 그 상태에서 py파일 실행
# 설치파일 받기
$ 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
# 크롬 파일 받기
$ wget <https://chromedriver.storage.googleapis.com/105.0.5195.52/chromedriver_linux64.zip>
# 압축 해제
unzip chromedriver_linux64.zip
driver = webdriver.Chrome("크롬 드라이버 설치경로")