(1) python selenium 라이브러리 설치
C:\PYTHON_HOME\..\Scripts
pip install -U selenium
실행 시 SSL 오류가 발생하였음
Could not fetch URL https://pypi.python.org/simple/selenium/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645) - skipping
Could not find a version that satisfies the requirement selenium (from versions: )
No matching distribution found for selenium
[해결방안]
- pip upgrade(pip 버전 확인 pip --version)
- easy_install pyopenssl 실행
- pip install --upgrade --trusted-host pypi.python.org selenium
출처 : http://selenium-python.readthedocs.io/installation.html