• 카테고리

    질문 & 답변
  • 세부 분야

    프로그래밍 언어

  • 해결 여부

    미해결

파일 문의

22.08.22 17:17 작성 조회수 150

0

  • 파이썬 기본 환경 설정(2-2) 강의 중 5:13에 강사님이 언급하는 제가 올려준 파일(화면상 chapter01_02 - 메모장)은 어디에서 다운로드받을 수 있나요?

답변 1

답변을 작성해보세요.

0

안녕하세요. 만학도님

환경설정을 3-1, 3-2 를 참고하셔서 vscode로 환경 설정 부탁드립니다.

맥 os에서 vscode사용하시는게 훨씬 좋습니다.

곧 atom은 지원을 중단할 예정이예요~

해당 메모는 혹시 모르니 아래 붙여넣기 해드릴께요

 

 

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;

}