Please Enable JavaScript!
Gon[ Enable JavaScript ]

파이썬(Python) selenium 업그레이드 하는 방법

파이썬 Python
반응형

셀레니움(Selenium)은 파이썬에서 웹 브라우저를 컨트롤 할 수 있는 라이브러리입니다. Selenium 은 크게 Client Server 로 나누어져 있습니다. 웹 브라우저를 다루는 사용하는 것은 Selenium Client 입니다. 셀레니움을 사용하기 위해서는 pip 유틸을 통해서 설치해야 합니다.

 

 

명령어는 다음과 같습니다.

 

> pip install Selenium

 

업데이트 명령어는 어떻게 될까요? 설치 명령어와 유사하지만 끝에 업그레이드를 위한 --upgrade 옵션을 입력해야 합니다.

 

> pip install selenium --upgrade
 
Collecting selenium
  Downloading https://files.pythonhosted.org/packages/57/bff41ab72a02c6ede96e90/selenium-3.12.0-py2.py3-no
ne-any.whl (946kB)
    100% |################################| 952kB 20kB/s
Installing collected packages: selenium
  Found existing installation: selenium 3.11.0
    Uninstalling selenium-3.11.0:
      Successfully uninstalled selenium-3.11.0
Successfully installed selenium-3.12.0

 

업그레이드가 정상적으로 끝나면 마지막에 버전이 나타납니다.

 

 

※ 아래는 참고하면 좋을 만한 글들의 링크를 모아둔 것입니다.
파이썬 Python 사칙 연산, 주요 연산자 다루는
파이썬(Python) 기본 개발툴 IDLE 설치하는 방법
파이썬(Python) 문자를 숫자로 변환해서 숫자에 더하는 방법
Python(파이썬) 주석 처리와 단축키 사용하는 방법
이썬 Python 개발을 위한 환경설정 – 명령 프롬프트로 개발하기
반응형
Posted by 녹두장군1
,