Mac OS 환경 1. 파이썬 설치 참고
- https://dejavuqa.tistory.com/60
- https://blockdmask.tistory.com/341
- https://eunguru.tistory.com/28
2. Atom Editor & 파이썬 연동 참고
- https://ddolbah.tistory.com/5
- https://github.com/TeamLab/Gachon_CS50_Python_KMOOC/blob/master/desc/atom_macos.md
(파이썬 선택 실행)
- https://stackoverflow.com/questions/35546627/how-to-configure-atom-to-run-python3-scripts
3. 터미널 등록
- https://stackoverflow.com/questions/22390709/how-to-open-atom-editor-from-command-line-in-os-x
4. 한글 깨짐
import sys import io
sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding = 'utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding = 'utf-8')
5. 콘솔 폰트 사이즈
.script-view .line {
font-size: 16px;
}
'python_basic' 카테고리의 다른 글
[파이썬] 딕셔너리 { : } (0) | 2020.11.21 |
---|---|
[파이썬] 튜플 () (0) | 2020.11.21 |
[파이썬] 리스트 [] (0) | 2020.11.13 |
[파이썬] 문자형 자료의 연산과 함수, 슬라이싱 (0) | 2020.11.11 |
[파이썬] 숫자형 자료와 연산 (0) | 2020.11.08 |
[파이썬] 변수의 선언 (0) | 2020.11.08 |
[파이썬] 문자열 포매팅 seperator / end / file / format / %d / %s / %f (0) | 2020.11.08 |