Programming4 html 특수문자 출력 코드 표현 문자 용도 < 꺽쇠 공백 ' ' (1칸 space) 공백 & & 앰퍼센드 " " 큰따옴표 2023. 4. 17. [nginx] configuration file /etc/nginx/nginx.conf test failed nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol) 해당 오류는 IP6 관련 설정 disable 해두면 발생한다. vi /etc/nginx/nginx.conf 에서 해당 설정 주석 처리한다. #listen [::]:80 default_server; 2023. 4. 13. pip 오프라인 설치 pip 패키지 추출 pip freeze > requirements.txt pip 패키지 다운로드 pip download -r requirements.txt pip 오프라인 설치 python -m pip install --no-index --find-links="./" -r requirements.txt 2023. 4. 6. UnicodeDecodeError 에러 python에서 출력된 결과를 파일로 쓰거나 파일을 읽을 때, 한글이 포함되어 있으면 반드시 인코딩 옵션을 추가해줘야 한다. 만약 안하면 노가다 할지도... ex. f = open("ios_keyword_competitors.json","w", encoding="utf8") with open('ios_keyword_competitors.json', 'r', encoding='utf8') as file: ios_keyword = json.loads(file.read()) myfile = open("ios_keyword_competitors.txt", encoding="utf8") 2019. 6. 13. 이전 1 다음