{"title":"자주묻는 질문: 설치","version":"3.0","locale":"ko","docname":"faq/install","url":"/ko/3.0/faq/install/","canonical":"https://djangodocs.dev/ko/3.0/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.0/intro/install/\"><span class=\"doc\">설치 가이드</span></a>를 읽으세요.)</p></li>\n<li><p><a class=\"reference internal\" href=\"/ko/3.0/intro/tutorial01/\"><span class=\"doc\">튜토리얼</span></a>을 따라 하세요.</p></li>\n<li><p>장고 <a class=\"reference internal\" href=\"/ko/3.0/\"><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 requires Python. See the table in the next question for the versions of\nPython that work with each version of Django. Other Python libraries may be\nrequired for some use cases, but you’ll receive an error about them as they’re\nneeded.</p>\n<p>For a development environment – if you just want to experiment with Django –\nyou don’t need to have a separate Web server installed or database server.</p>\n<p>Django comes with its own <a class=\"reference internal\" href=\"/ko/3.0/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.0/howto/deployment/\"><span class=\"doc\">Deploying Django</span></a> for more information.</p>\n<p>Django runs <a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a> by default, which is included in Python installations.\nFor a production environment, we recommend <a class=\"reference external\" href=\"https://www.postgresql.org/\">PostgreSQL</a>; but we also officially\nsupport <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>, and <a class=\"reference external\" href=\"https://www.oracle.com/\">Oracle</a>. See <a class=\"reference internal\" href=\"/ko/3.0/ref/databases/\"><span class=\"doc\">Supported Databases</span></a> for more information.</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>1.11</p></td>\n<td><p>2.7, 3.4, 3.5, 3.6, 3.7(1.11.17에 추가됨)</p></td>\n</tr>\n<tr class=\"row-odd\"><td><p>2.0</p></td>\n<td><p>3.4, 3.5, 3.6, 3.7</p></td>\n</tr>\n<tr class=\"row-even\"><td><p>2.1</p></td>\n<td><p>3.5, 3.6, 3.7</p></td>\n</tr>\n<tr class=\"row-odd\"><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-even\"><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</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를 추천합니다. 장고 1.11은 파이썬 2.7을 지원하는 마지막 버전입니다. 파이썬 2.7과 Django1.11에 대한 지원은 2020년에 끝납니다.</p>\n<p>대게 새로운 파이썬 버전이 빠르고, 기능도 많고, 더 많은 지원을 하기 떄문에 가장 최근 파이썬 3 버전을 추천합니다.</p>\n<p>예전 릴리즈의 장고를 사용한다고 잃는것은 아무것도 없습니다. 하지만 새로운 파이썬의 발전과 최적화 혜택을 받을 수 없습니다. 써드파티 애플리케이션 또한 그들의 버전 요구를 정할 수 있습니다.</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.0/faq/"}],"prev":{"docname":"faq/general","title":"자주 묻는 질문: 일반","url":"/ko/3.0/faq/general/"},"next":{"docname":"faq/usage","title":"자주 묻는 질문: 장고 사용하기","url":"/ko/3.0/faq/usage/"},"formats":{"html":"/ko/3.0/faq/install/","markdown":"/ko/3.0/faq/install.md","json":"/ko/3.0/faq/install.json"},"source":"https://github.com/django/django/blob/stable/3.0.x/docs/faq/install.txt","official":"https://docs.djangoproject.com/ko/3.0/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","pt-br","ko","es","el","pl"]}