반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- react
- react tailwindcss
- mysql 재설치 명령어
- mysql 삭제
- Android
- 리액트 tailwindcss
- Python
- react 기초
- 도커
- mysql 재설치
- 리눅스
- 리액트
- mysql
- 리액트 문법
- mysql broken install
- mysql error
- Docker
- mysql fix install
- javascript
- Docker ubuntu
- mysql uninstall
- next.js tailwindcss
- react tailwind css
- react typescript
- next.js css framework
- PHP
- mysql purge
- 안드로이드
- next.js tailwind css
- 리액트 tailwind css
Archives
- Today
- Total
Developer_hong
Python - Mac Terminal 본문
반응형
파이썬 맥 터미널
해당 파이썬 파일 있는 디렉토리에서 실행 가능
ex)
Directory: /Users/Work/work_1.py
cd /Users/Work/
python3 work_1.py
맥 터미널
파이썬 실행
-> python3
-> print('Print_Test')
[ 결과 : Print_Test ]
exit() 입력하여 종료
모듈 설치
ex) Selenium 모듈이 필요하다면
pip3 install selenium
모듈이 잘 설치됐는지 확인
-> python3
-> from selenium import webdriver
import 가 정상적으로 완료 된다는 것은 모듈 설치가 잘 되었다는 의미
반응형
'프로그래밍 > Python' 카테고리의 다른 글
스크린샷 저장 Chrome, Firefox (1) | 2020.10.22 |
---|---|
Python IDE (0) | 2020.07.10 |