728x90
[장고 프로젝트 생성]
1. 가상환경 생성
python -m venv [가상환경이름]
python -m venv myvenv
2. 가상환경 실행
source [가상환경 이름]/Scripts/activate
source myvenv/Scripts/activate
3. 장고 설치
pip install django
WARNING: You are using pip version 21.1.1; however, version 21.1.3 is available.
1. 윈도우인 경우
python -m pip install --upgrade pip
2. 리눅스 환경일 경우
pip install --upgrade pip
4. 프로젝트 생성
django-admin startproject [프로젝트 이름]
5. 프로젝트로 디렉토리 이동
cd [프로젝트 이름]
6. 앱 생성
python manage.py startapp [앱이름]
7. 프로젝트와 앱 연결
settings.py의 INSTALLED_APPS 안에 '[앱이름].apps.[대문자 시작 앱이름]Config',
728x90
'기타 > Django & Web' 카테고리의 다른 글
DoesNotExist at/accounts/google/login/ SocialApp matching query does not exist : 히로쿠 배포 + 소셜 로그인 오류 (0) | 2021.07.27 |
---|---|
ConnectionRefusedError at /accounts/signup [WinError 10061] 대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다 (0) | 2021.07.26 |
[Heroku Error 에러] ValueError at / I/O operation on closed file. (0) | 2021.07.10 |
[Heroku 에러] 히로쿠 앱 삭제 / app delete (0) | 2021.07.09 |
Heroku 배포하기 (1) | 2021.07.08 |