터미널 파이썬 관련 코드

이차함수·2022년 6월 9일
0

bash

목록 보기
2/4
  • 파이썬 파일 만들기 : $touch file.py
  • 파이썬 실행 : $winpty python.exe
    (MAC과 달리 윈도우에서는 'python'만으로 실행 안 되기도 함)
  • 파이썬 파일 실행 : $python [file path]
    ex) $python ./file.py
  • pytest 실행 : $python -m pytest
  • pytest 제출 : $python -m pytest --submit
  • pytest 점수 확인 : $python -m pytest --score
  • pytest 'passed'만 확인 :
    $winpty -Xallow-non-tty python -m pytest|grep passed (윈도우) $python -m pytest | grep passed(MAC)
  • VSCode(연동) 실행시키려는 폴더로 이동 뒤 : $code .
  • 파이썬 디버깅 : $python -m pdb file.py
profile
AI를 공부합니다.

0개의 댓글