주 메뉴 열기

wwiki β

Python

Jhkim (토론 | 기여)님의 2019년 7월 30일 (화) 01:39 판 (python3)

목차

python2

pip 설치

$ sudo apt install python-pip

패키지 설치

$ python -m pip install 패키지명

python3

pip3 설치

$ apt install python3-pip

패키지 설치

$ sudo pip3 install 패키지명

웹 크롤링

Selenium

에러

UnicodeDecodeError: 'ascii' codec can't decode byte

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