Python

wwiki
Jhkim (토론 | 기여)님의 2019년 11월 14일 (목) 03:44 판 (python3)
이동: 둘러보기, 검색

python2

pip 설치

$ sudo apt install python-pip

패키지 설치

$ python -m pip install 패키지명

python3

https://docs.python.org/ko/3/howto/index.html

pip3 설치

$ apt install python3-pip

패키지 설치

$ sudo pip3 install 패키지명

웹 크롤링

Selenium

에러

UnicodeDecodeError: 'ascii' codec can't decode byte

import sys 이후에 다음 코드 추가

reload(sys)
sys.setdefaultencoding('utf-8')