반응형
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
- Python
- next.js css framework
- mysql error
- react tailwind css
- Docker ubuntu
- next.js tailwind css
- 리눅스
- mysql 재설치
- 리액트 tailwind css
- mysql uninstall
- next.js tailwindcss
- PHP
- react
- Docker
- 도커
- Android
- mysql 삭제
- 리액트 tailwindcss
- mysql fix install
- mysql 재설치 명령어
- mysql
- javascript
- react typescript
- 리액트 문법
- 안드로이드
- react tailwindcss
- mysql broken install
- 리액트
- mysql purge
- react 기초
Archives
- Today
- Total
목록Python (2)
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
2020. 7. 10. 15:43
Python IDE
오늘 파이썬 언어 습득을 시작했다 파이썬 코딩을 위한 IDE를 설치한다 * 디렉토리 & 인터프리터 세팅은 MAC OS 기준 pycharm 설치 : 커뮤니티 무료 버전 https://www.jetbrains.com/ko-kr/pycharm/download/#section=mac 다운로드 PyCharm: JetBrains가 만든 전문 개발자용 Python IDE 최신 버전 다운로드: PyCharm (Windows, macOS, Linux) www.jetbrains.com 1. 설치 완료 2. 프로잭트 생성 또는 Import 3.Pycharm - 설정(Preference) - Project:(project_name) - Project Interpreter Pycharm에서 인터프리터를 설정해준다 인터프리터를 ..
프로그래밍/Python
2020. 7. 10. 15:33