주 메뉴 열기

wwiki β

바뀜

Python

116 바이트 추가됨, 2019년 12월 8일 (일) 06:04
편집 요약 없음
== 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]]
== string == === split ===<nowiki>https://www.w3schools.com/python/ref_string_split.asp</nowiki> ==에러===== UnicodeDecodeError: 'ascii' codec can't decode byte===
import sys 이후에 다음 코드 추가
reload(sys)
sys.setdefaultencoding('utf-8')
편집
2,431