본문 바로가기

카테고리 없음

[Django/Python] 장고 설치하기 - 맥(MAC) OS

반응형

이 글은 파이썬 가상환경을 구성한 상태에서 MAC OS에 Django를 설치하는 과정입니다.

파이썬 가상환경 구성이 되어있지 않다면 이전 글을 참고해주세요.

 

https://yeslab.tistory.com/133

 

[Python] 파이썬 가상환경(pipenv) 설치 및 사용법

pipenv 설치 pip3 install pipenv 가상환경 생성 cd myproject pipenv --python 3.X 가상환경 터미널 실행 pipenv shell 가상환경 실행(run) : 가상환경 터미널로 넘어가지 않고 가상환경에서 커맨드만 수행 pipe..

yeslab.tistory.com

 

 

가상환경 생성 및 실행

cd myproject
pipenv --python 3.9
pipenv shell

 

장고 설치

pipenv install django

 

장고 설치 확인

django-admin

 

실행결과

Type 'django-admin help <subcommand>' for help on a specific subcommand.

Available subcommands:

[django]
    check
    compilemessages
    createcachetable
    dbshell
    diffsettings
    dumpdata
    flush
    inspectdb
    loaddata
    makemessages
    makemigrations
    migrate
    runserver
    sendtestemail
    shell
    showmigrations
    sqlflush
    sqlmigrate
    sqlsequencereset
    squashmigrations
    startapp
    startproject
    test
    testserver
Note that only Django core commands are listed as settings are not properly configured (error: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.).

 

 

장고 튜토리얼 프로젝트 생성

django-admin startproject tutorial

 

장고 서버 실행

python3 tutorial/manage.py runserver

 

브라우저에서 http://127.0.0.1:8000 접속하여 확인

반응형