인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

kimdongy10000978's profile image
kimdongy10000978

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

[ Wait a minute! ] Download YouTube videos with Python and automate conversion to mp3!

가상환경에서 한글깨짐 현상

Written on

·

1.2K

0

안녕하세요 선생님 선생님 강의 잘 듣고 있습니다 

선생님이 써주시는 코드 열심히 해나가고 있는데 저는 

아나콘다 프롬프트에서 python xxx.py 명령을 실행을 시키면 

cmd 에 한글이 깨지는 현상이 발생합니다

atom 에서 하면은 

import sys

import io

sys.stdout = io.TextIOWrapper(sys.stdout.detach() , encoding = "UTF-8") ## 스탠다드 출력 인코딩 설정

sys.stderr = io.TextIOWrapper(sys.stderr.detach() , encoding = "UTF-8") ## 스탠다드 에러 일때 출력

로 인해서 아톰에서는 한글이 안꺠지는데 

아나콘다 프롬프트에서 계속 한글이 깨집니다

도움좀 부탁드리겠습니다 

웹-크롤링python

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

https://extrememanual.net/12502

참고가 되셨으면 좋겠습니다.

kimdongy10000978's profile image
kimdongy10000978

asked

Ask a question