1. VSCode설치 뒤 열고자 하는 폴더 open
2. VSCode Extension 설치
3. venv 생성
python -m venv venv
4. Interpreter 설정
4-1. VSCode의 View > Command Pallette 실행
4-2. Python: Select Interpreter 실행
4-3. .\venv\Scripts\python.exe 선택
5. 기본 터미널 변경
5-1. VSCode의 View > Command Pallette 실행
5-2. Terminal: Select Default Shell 실행하여 Command Prompt 선택 (기본 터미널이 PowerShell이라 Error가 남)
5-3. Terminal: Create New Integrated Terminal 실행
6. 미리 생성해둔 requirement.txt를 이용해 python 모듈들 설치
pip install -r requirements.txt
'Python > Django' 카테고리의 다른 글
django 와 mongodb연동 (0) | 2020.08.17 |
---|---|
페이지네이션 (0) | 2020.08.11 |
Django 댓글기능 추가 (0) | 2020.08.07 |
Django 템플릿 상속 / 게시판 만들기 (0) | 2020.08.06 |
Django (Migrate / URLConf / View / Template / QuerySet / Bootstrap) (0) | 2020.08.05 |