{"title":"자주묻는 질문: 설치","version":"3.2","locale":"ko","docname":"faq/install","url":"/ko/3.2/faq/install/","canonical":"https://djangodocs.dev/ko/3.2/faq/install/","summary":"어떻게 시작하나요? Link to this heading # 코드를 다운로드하세요 . 장고를 설치하세요 ( 설치 가이드 를 읽으세요.) 튜토리얼 을 따라 하세요. 장고 문서 를 확인하시고, 문제가 있다면 질문하세요 . 장고를 위해 준비해야 할것이 있나요? Link to this heading…","html":"<h1>자주묻는 질문: 설치<a class=\"heading-anchor\" href=\"#faq-installation\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<section id=\"how-do-i-get-started\">\n<h2>어떻게 시작하나요?<a class=\"heading-anchor\" href=\"#how-do-i-get-started\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<ol class=\"arabic simple\">\n<li><p><a class=\"reference external\" href=\"https://www.djangoproject.com/download/\">코드를 다운로드하세요</a>.</p></li>\n<li><p>장고를 설치하세요 ( <a class=\"reference internal\" href=\"/ko/3.2/intro/install/\"><span class=\"doc\">설치 가이드</span></a>를 읽으세요.)</p></li>\n<li><p><a class=\"reference internal\" href=\"/ko/3.2/intro/tutorial01/\"><span class=\"doc\">튜토리얼</span></a>을 따라 하세요.</p></li>\n<li><p>장고 <a class=\"reference internal\" href=\"/ko/3.2/\"><span class=\"doc\">문서</span></a>를 확인하시고, 문제가 있다면 <a class=\"reference external\" href=\"https://www.djangoproject.com/community/\">질문하세요</a>.</p></li>\n</ol>\n</section>\n<section id=\"what-are-django-s-prerequisites\">\n<h2>장고를 위해 준비해야 할것이 있나요?<a class=\"heading-anchor\" href=\"#what-are-django-s-prerequisites\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django를 사용하기 위해 파이썬을 설치해야 합니다. django의 각각의 버전에서 작동하는 파이썬 버전은 다음의 표를 참조하세요.  일부사용사례에서는 다른 파이썬 라이프러리가 필요할 수 있지만 필요한 라이브러리에 대한 오류를 확인 할 수 있습니다.</p>\n<p>단순히 장고를 학습하귀 위한 개발환경 구축을 위해서는 별도의 웹 서버를 설치할 필요가 없고 데이터베이스 서버가 필요하지 않습니다.</p>\n<p>Django comes with its own <a class=\"reference internal\" href=\"/ko/3.2/ref/django-admin/#django-admin-runserver\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">lightweight</span> <span class=\"pre\">development</span> <span class=\"pre\">server</span></code></a>.\nFor a production environment, Django follows the WSGI spec, <span class=\"target\" id=\"index-0\"></span><a class=\"pep reference external\" href=\"https://peps.python.org/pep-3333/\"><strong>PEP 3333</strong></a>, which\nmeans it can run on a variety of web servers. See <a class=\"reference internal\" href=\"/ko/3.2/howto/deployment/\"><span class=\"doc\">Deploying Django</span></a> for more information.</p>\n<p>Django는 기본적으로 <a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a> 를 사용합니다. SQLite는 설치과정에 포함됩니다. 생성환경에서는  PostgreSQL_를 권장합니다. 그러나 공식적으로 <a class=\"reference external\" href=\"https://mariadb.org/\">MariaDB</a>, <a class=\"reference external\" href=\"https://www.mysql.com/\">MySQL</a>, <a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a>, SQLite, <a class=\"reference external\" href=\"https://www.oracle.com/\">Oracle</a>. 을 지원합니다. 지원되는 데이터 베이스는 :doc:<a href=\"#id1\"><span class=\"problematic\" id=\"id2\">`</span></a>Supported Databases 1`을 참조하세요.</p>\n</section>\n<section id=\"what-python-version-can-i-use-with-django\">\n<span id=\"faq-python-version-support\"></span><h2>장고와 어떤 파이썬 버전을 사용해야 하나요?<a class=\"heading-anchor\" href=\"#what-python-version-can-i-use-with-django\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<div class=\"table-scroll\" role=\"region\" tabindex=\"0\" aria-label=\"Table\"><table class=\"docutils align-default\">\n<thead>\n<tr class=\"row-odd\"><th class=\"head\"><p>장고 버전</p></th>\n<th class=\"head\"><p>파이썬 버전들</p></th>\n</tr>\n</thead>\n<tbody>\n<tr class=\"row-even\"><td><p>2.2</p></td>\n<td><p>3.5, 3.6, 3.7, 3.8 (added in 2.2.8), 3.9 (added in 2.2.17)</p></td>\n</tr>\n<tr class=\"row-odd\"><td><p>3.0</p></td>\n<td><p>3.6, 3.7, 3.8, 3.9 (added in 3.0.11)</p></td>\n</tr>\n<tr class=\"row-even\"><td><p>3.1</p></td>\n<td><p>3.6, 3.7, 3.8, 3.9 (added in 3.1.3)</p></td>\n</tr>\n<tr class=\"row-odd\"><td><p>3.2</p></td>\n<td><p>3.6, 3.7, 3.8, 3.9, 3.10 (added in 3.2.9)</p></td>\n</tr>\n</tbody>\n</table>\n</div>\n<p>각 Python 버전에 대해, 최종 마이크로 릴리스(A.B.C)만을 공식적으로 지원합니다. <a class=\"reference external\" href=\"https://www.python.org/downloads/\">Python 다운로드 페이지</a>에서 최근 마이크로 버전 시리즈들을 찾을 수 있습니다.</p>\n<p>Typically, we will support a Python version up to and including the first\nDjango LTS release whose security support ends after security support for that\nversion of Python ends. For example, Python 3.3 security support ended\nSeptember 2017 and Django 1.8 LTS security support ended April 2018. Therefore\nDjango 1.8 is the last version to support Python 3.3.</p>\n</section>\n<section id=\"what-python-version-should-i-use-with-django\">\n<h2>장고를 사용하기 위해 어떤 파이썬 버전을 사용해야 하나요?<a class=\"heading-anchor\" href=\"#what-python-version-should-i-use-with-django\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>대게 새로운 파이썬 버전이 빠르고, 기능도 많고, 더 많은 지원을 하기 떄문에 가장 최근 파이썬 3 버전을 추천합니다.</p>\n<p>You don’t lose anything in Django by using an older release, but you don’t take\nadvantage of the improvements and optimizations in newer Python releases.\nThird-party applications for use with Django are free to set their own version\nrequirements.</p>\n</section>\n<section id=\"should-i-use-the-stable-version-or-development-version\">\n<h2>개발중인 버전을 사용해야 하나요. 안정화된 버전을 사용해야 하나요?<a class=\"heading-anchor\" href=\"#should-i-use-the-stable-version-or-development-version\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>일반적으로, 만약 제품을 위한 코드를 쓴다면 안정된 릴리즈 버전을 사용해야 합니다. 장고 프로젝트는 매 9달 정도 마다 중간에 버그 픽스가 추가된 안정된 릴리즈를 발표합니다. 이 안정된 릴리즈들은 이전 버전의 호환성을 보장하는 API들을 포함합니다. 안정된 릴리즈 버전으로 코드를 작성한다면 차후에 새로운 공식 릴리즈로 업그레이드 하는것에 문제가 없을 것입니다.</p>\n</section>","rootId":"faq-installation","toc":[{"title":"어떻게 시작하나요?","anchor":"how-do-i-get-started","children":[]},{"title":"장고를 위해 준비해야 할것이 있나요?","anchor":"what-are-django-s-prerequisites","children":[]},{"title":"장고와 어떤 파이썬 버전을 사용해야 하나요?","anchor":"what-python-version-can-i-use-with-django","children":[]},{"title":"장고를 사용하기 위해 어떤 파이썬 버전을 사용해야 하나요?","anchor":"what-python-version-should-i-use-with-django","children":[]},{"title":"개발중인 버전을 사용해야 하나요. 안정화된 버전을 사용해야 하나요?","anchor":"should-i-use-the-stable-version-or-development-version","children":[]}],"breadcrumbs":[{"docname":"faq/index","title":"장고 자주묻는 질문","url":"/ko/3.2/faq/"}],"prev":{"docname":"faq/general","title":"자주 묻는 질문: 일반","url":"/ko/3.2/faq/general/"},"next":{"docname":"faq/usage","title":"자주 묻는 질문: 장고 사용하기","url":"/ko/3.2/faq/usage/"},"formats":{"html":"/ko/3.2/faq/install/","markdown":"/ko/3.2/faq/install.md","json":"/ko/3.2/faq/install.json"},"source":"https://github.com/django/django/blob/stable/3.2.x/docs/faq/install.txt","official":"https://docs.djangoproject.com/ko/3.2/faq/install/","inVersions":["6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11"],"inLocales":["en","zh-hans","fr","ja","id","it","pt-br","ko","es","el","pl"]}