{"title":"Django 설치하는 법","version":"4.2","locale":"ko","docname":"topics/install","url":"/ko/4.2/topics/install/","canonical":"https://djangodocs.dev/ko/4.2/topics/install/","summary":"이 문서는 Django를 설치하는 방법을 설명합니다. Python 설치 Link to this heading # Django is a Python web framework. See 장고와 어떤 파이썬 버전을 사용해야 하나요? for details. 최신 Python 버전은…","html":"<h1>Django 설치하는 법<a class=\"heading-anchor\" href=\"#how-to-install-django\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<p>이 문서는 Django를 설치하는 방법을 설명합니다.</p>\n<section id=\"install-python\">\n<h2>Python 설치<a class=\"heading-anchor\" href=\"#install-python\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django is a Python web framework. See <a class=\"reference internal\" href=\"/ko/4.2/faq/install/#faq-python-version-support\"><span class=\"std std-ref\">장고와 어떤 파이썬 버전을 사용해야 하나요?</span></a> for\ndetails.</p>\n<p>최신 Python 버전은 <a class=\"reference external\" href=\"https://www.python.org/downloads/\">https://www.python.org/downloads/</a> 또는 운영 체제 패키지 관리자에게 문의하십시오.</p>\n<aside class=\"admonition-python-on-windows admonition\">\n<p class=\"admonition-title\">Windows 환경의 Python</p>\n<p>만약 Windows를 사용하여 Django를 시작하고 싶다면, :doc:<a href=\"#id1\"><span class=\"problematic\" id=\"id2\">`</span></a>/howto/windows`를 참고하세요.</p>\n</aside>\n</section>\n<section id=\"install-apache-and-mod-wsgi\">\n<h2>Apache와 <code class=\"docutils literal notranslate\"><span class=\"pre\">mod_wsgi</span></code> 설치<a class=\"heading-anchor\" href=\"#install-apache-and-mod-wsgi\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>단지 Django를 테스트하고 싶은것 이라면 다음 섹션으로 건너 뛰어도 괜찮습니다. Django는 테스트를 위한 경량의 웹서버를 포함하고 있기때문에 프로덕션 환경에 Django를 배포할 준비가 될때까지 아파치를 설정할 필요는 없습니다.</p>\n<p>If you want to use Django on a production site, use <a class=\"reference external\" href=\"https://httpd.apache.org/\">Apache</a> with\n<a class=\"reference external\" href=\"https://modwsgi.readthedocs.io/en/develop/\">mod_wsgi</a>. mod_wsgi operates in one of two modes: embedded\nmode or daemon mode. In embedded mode, mod_wsgi is similar to\nmod_perl – it embeds Python within Apache and loads Python code into\nmemory when the server starts. Code stays in memory throughout the\nlife of an Apache process, which leads to significant performance\ngains over other server arrangements. In daemon mode, mod_wsgi spawns\nan independent daemon process that handles requests. The daemon\nprocess can run as a different user than the web server, possibly\nleading to improved security. The daemon process can be restarted\nwithout restarting the entire Apache web server, possibly making\nrefreshing your codebase more seamless. Consult the mod_wsgi\ndocumentation to determine which mode is right for your setup. Make\nsure you have Apache installed with the mod_wsgi module activated.\nDjango will work with any version of Apache that supports mod_wsgi.</p>\n<p>See <a class=\"reference internal\" href=\"/ko/4.2/howto/deployment/wsgi/modwsgi/\"><span class=\"doc\">How to use Django with mod_wsgi</span></a>\nfor information on how to configure mod_wsgi once you have it\ninstalled.</p>\n<p>If you can’t use mod_wsgi for some reason, fear not: Django supports many other\ndeployment options. One is <a class=\"reference internal\" href=\"/ko/4.2/howto/deployment/wsgi/uwsgi/\"><span class=\"doc\">uWSGI</span></a>; it works\nvery well with <a class=\"reference external\" href=\"https://nginx.org/\">nginx</a>. Additionally, Django follows the WSGI spec\n(<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 allows it to run on a variety of server platforms.</p>\n</section>\n<section id=\"get-your-database-running\">\n<span id=\"database-installation\"></span><h2>데이터베이스 구동<a class=\"heading-anchor\" href=\"#get-your-database-running\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django의 데이터베이스 API 기능을 사용하려면 데이터베이스 서버를 실행해야합니다. Django는 다양한 데이터베이스 서버를 지원하며 공식적으로 <a class=\"reference external\" href=\"https://www.postgresql.org/\">PostgreSQL</a>, <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.oracle.com/\">Oracle</a> 및 SQLite_가 지원됩니다.</p>\n<p>소규모 프로젝트나 프로덕션 환경에 배포할 계획이 없는 프로젝트를 개발하는 경우에는 별도의 서버를 실행할 필요가 없으므로 일반적으로 SQLite가 가장 좋습니다. 그러나 SQLite는 다른 데이터베이스와 많은 차이점이 있으므로 중요한 작업을 하는 경우 프로덕션 환경에서 사용할 계획과 동일한 데이터베이스로 개발하는 것이 좋습니다.</p>\n<p>공식적으로 지원되는 데이터베이스 외에도 다른 데이터베이스를 장고와 함께 사용할 수 있도록 해주는:ref:<a href=\"#id1\"><span class=\"problematic\" id=\"id2\">`</span></a>backends provided by 3rd parties 1`가 있습니다.</p>\n<p>데이터베이스 백엔드 외에도 Python 데이터베이스 바인딩이 설치되어 있는지 확인해야 합니다.</p>\n<ul class=\"simple\">\n<li><p>PostgreSQL을 사용하는 경우 <a class=\"reference external\" href=\"https://www.psycopg.org/psycopg3/\">psycopg</a> 또는 <a class=\"reference external\" href=\"https://www.psycopg.org/\">psycopg2</a> 패키지가 필요합니다. 자세한 내용은 :ref:<a href=\"#id1\"><span class=\"problematic\" id=\"id2\">`</span></a>PostgreSQL notes <a href=\"#id3\"><span class=\"problematic\" id=\"id4\">`</span></a>를 참조하세요.</p></li>\n<li><p>MySQL 또는 MariaDB를 사용하는 경우 <a href=\"#id1\"><span class=\"problematic\" id=\"id2\">``</span></a>mysqlclient``와 같은 :ref:<a href=\"#id3\"><span class=\"problematic\" id=\"id4\">`</span></a>DB API 드라이버``가 필요합니다. 자세한 내용은 MySQL 백엔드에 대한 :ref:<a href=\"#id5\"><span class=\"problematic\" id=\"id6\">`</span></a>주석`을 참조하세요.</p></li>\n<li><p>SQLite를 사용하는 경우 :ref:<a href=\"#id1\"><span class=\"problematic\" id=\"id2\">`</span></a>SQLite backend notes`를 읽어보시기 바랍니다.</p></li>\n<li><p>If you’re using Oracle, you’ll need a copy of <a class=\"reference external\" href=\"https://oracle.github.io/python-cx_Oracle/\">cx_Oracle</a>, but please\nread the <a class=\"reference internal\" href=\"/ko/4.2/ref/databases/#oracle-notes\"><span class=\"std std-ref\">notes for the Oracle backend</span></a> for details\nregarding supported versions of both Oracle and <code class=\"docutils literal notranslate\"><span class=\"pre\">cx_Oracle</span></code>.</p></li>\n<li><p>If you’re using an unofficial 3rd party backend, please consult the\ndocumentation provided for any additional requirements.</p></li>\n</ul>\n<p>If you plan to use Django’s <code class=\"docutils literal notranslate\"><span class=\"pre\">manage.py</span> <span class=\"pre\">migrate</span></code> command to automatically\ncreate database tables for your models (after first installing Django and\ncreating a project), you’ll need to ensure that Django has permission to create\nand alter tables in the database you’re using; if you plan to manually create\nthe tables, you can grant Django <code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span></code>, <code class=\"docutils literal notranslate\"><span class=\"pre\">INSERT</span></code>, <code class=\"docutils literal notranslate\"><span class=\"pre\">UPDATE</span></code> and\n<code class=\"docutils literal notranslate\"><span class=\"pre\">DELETE</span></code> permissions. After creating a database user with these permissions,\nyou’ll specify the details in your project’s settings file, see\n<a class=\"reference internal\" href=\"/ko/4.2/ref/settings/#std-setting-DATABASES\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DATABASES</span></code></a> for details.</p>\n<p>If you’re using Django’s <a class=\"reference internal\" href=\"/ko/4.2/topics/testing/\"><span class=\"doc\">testing framework</span></a> to test\ndatabase queries, Django will need permission to create a test database.</p>\n</section>\n<section id=\"install-the-django-code\">\n<span id=\"install-django-code\"></span><h2>Django 코드 설치<a class=\"heading-anchor\" href=\"#install-the-django-code\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Installation instructions are slightly different depending on whether you’re\ninstalling a distribution-specific package, downloading the latest official\nrelease, or fetching the latest development version.</p>\n<section id=\"installing-an-official-release-with-pip\">\n<span id=\"installing-official-release\"></span><h3>Installing an official release with <code class=\"docutils literal notranslate\"><span class=\"pre\">pip</span></code><a class=\"heading-anchor\" href=\"#installing-an-official-release-with-pip\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>This is the recommended way to install Django.</p>\n<ol class=\"arabic\">\n<li><p>Install <a class=\"reference external\" href=\"https://pip.pypa.io/\">pip</a>. The easiest is to use the <a class=\"reference external\" href=\"https://pip.pypa.io/en/latest/installation/\">standalone pip installer</a>. If your\ndistribution already has <code class=\"docutils literal notranslate\"><span class=\"pre\">pip</span></code> installed, you might need to update it if\nit’s outdated. If it’s outdated, you’ll know because installation won’t\nwork.</p></li>\n<li><p>Take a look at <a class=\"reference external\" href=\"https://docs.python.org/3/tutorial/venv.html\" title=\"(Python v3.14에서)\"><span class=\"xref std std-doc\">venv</span></a>. This tool provides\nisolated Python environments, which are more practical than installing\npackages systemwide. It also allows installing packages without\nadministrator privileges. The <a class=\"reference internal\" href=\"/ko/4.2/intro/contributing/\"><span class=\"doc\">contributing tutorial</span></a> walks through how to create a virtual environment.</p></li>\n<li><p>After you’ve created and activated a virtual environment, enter the command:</p>\n<div class=\"console\" data-console><div class=\"console-panel\" data-platform=\"unix\"><p class=\"console-label\" id=\"console-0-unix-label\">Linux / macOS</p><div class=\"code-block\" data-language=\"console\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Shell</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Shell code\"><code><span class=\"gp\">$ </span>python<span class=\"w\"> </span>-m<span class=\"w\"> </span>pip<span class=\"w\"> </span>install<span class=\"w\"> </span>Django\n</code></pre></div>\n</div><div class=\"console-panel\" data-platform=\"windows\"><p class=\"console-label\" id=\"console-0-windows-label\">Windows</p><div class=\"code-block\" data-language=\"doscon\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Windows</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Windows shell\"><code><span class=\"gp\">...\\&gt;</span> py -m pip install Django\n</code></pre></div></div></div>\n</li>\n</ol>\n</section>\n<section id=\"installing-a-distribution-specific-package\">\n<span id=\"installing-distribution-package\"></span><h3>Installing a distribution-specific package<a class=\"heading-anchor\" href=\"#installing-a-distribution-specific-package\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Check the <a class=\"reference internal\" href=\"/ko/4.2/misc/distributions/\"><span class=\"doc\">distribution specific notes</span></a> to see if\nyour platform/distribution provides official Django packages/installers.\nDistribution-provided packages will typically allow for automatic installation\nof dependencies and supported upgrade paths; however, these packages will rarely\ncontain the latest release of Django.</p>\n</section>\n<section id=\"installing-the-development-version\">\n<span id=\"installing-development-version\"></span><h3>Installing the development version<a class=\"heading-anchor\" href=\"#installing-the-development-version\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<aside class=\"admonition-tracking-django-development admonition\">\n<p class=\"admonition-title\">Tracking Django development</p>\n<p>If you decide to use the latest development version of Django,\nyou’ll want to pay close attention to <a class=\"reference external\" href=\"https://code.djangoproject.com/timeline\">the development timeline</a>,\nand you’ll want to keep an eye on the <a class=\"reference internal\" href=\"/ko/4.2/releases/#development-release-notes\"><span class=\"std std-ref\">release notes for the\nupcoming release</span></a>. This will help you stay\non top of any new features you might want to use, as well as any changes\nyou’ll need to make to your code when updating your copy of Django.\n(For stable releases, any necessary changes are documented in the\nrelease notes.)</p>\n</aside>\n<p>If you’d like to be able to update your Django code occasionally with the\nlatest bug fixes and improvements, follow these instructions:</p>\n<ol class=\"arabic\">\n<li><p>Make sure that you have <a class=\"reference external\" href=\"https://git-scm.com/\">Git</a> installed and that you can run its commands\nfrom a shell. (Enter <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">help</span></code> at a shell prompt to test this.)</p></li>\n<li><p>Check out Django’s main development branch like so:</p>\n<div class=\"console\" data-console><div class=\"console-panel\" data-platform=\"unix\"><p class=\"console-label\" id=\"console-1-unix-label\">Linux / macOS</p><div class=\"code-block\" data-language=\"console\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Shell</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Shell code\"><code><span class=\"gp\">$ </span>git<span class=\"w\"> </span>clone<span class=\"w\"> </span>https://github.com/django/django.git\n</code></pre></div>\n</div><div class=\"console-panel\" data-platform=\"windows\"><p class=\"console-label\" id=\"console-1-windows-label\">Windows</p><div class=\"code-block\" data-language=\"doscon\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Windows</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Windows shell\"><code><span class=\"gp\">...\\&gt;</span> git clone https://github.com/django/django.git\n</code></pre></div></div></div>\n<p>This will create a directory <code class=\"docutils literal notranslate\"><span class=\"pre\">django</span></code> in your current directory.</p>\n</li>\n<li><p>Make sure that the Python interpreter can load Django’s code. The most\nconvenient way to do this is to use a virtual environment and <a class=\"reference external\" href=\"https://pip.pypa.io/\">pip</a>. The\n<a class=\"reference internal\" href=\"/ko/4.2/intro/contributing/\"><span class=\"doc\">contributing tutorial</span></a> walks through how to\ncreate a virtual environment.</p></li>\n<li><p>After setting up and activating the virtual environment, run the following\ncommand:</p>\n<div class=\"console\" data-console><div class=\"console-panel\" data-platform=\"unix\"><p class=\"console-label\" id=\"console-2-unix-label\">Linux / macOS</p><div class=\"code-block\" data-language=\"console\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Shell</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Shell code\"><code><span class=\"gp\">$ </span>python<span class=\"w\"> </span>-m<span class=\"w\"> </span>pip<span class=\"w\"> </span>install<span class=\"w\"> </span>-e<span class=\"w\"> </span>django/\n</code></pre></div>\n</div><div class=\"console-panel\" data-platform=\"windows\"><p class=\"console-label\" id=\"console-2-windows-label\">Windows</p><div class=\"code-block\" data-language=\"doscon\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Windows</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Windows shell\"><code><span class=\"gp\">...\\&gt;</span> py -m pip install -e django\\\n</code></pre></div></div></div>\n<p>This will make Django’s code importable, and will also make the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">django-admin</span></code> utility command available. In other words, you’re all\nset!</p>\n</li>\n</ol>\n<p>When you want to update your copy of the Django source code, run the command\n<code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">pull</span></code> from within the <code class=\"docutils literal notranslate\"><span class=\"pre\">django</span></code> directory. When you do this, Git will\ndownload any changes.</p>\n</section>\n</section>","rootId":"how-to-install-django","toc":[{"title":"Python 설치","anchor":"install-python","children":[]},{"title":"Apache와 mod_wsgi 설치","anchor":"install-apache-and-mod-wsgi","children":[]},{"title":"데이터베이스 구동","anchor":"get-your-database-running","children":[]},{"title":"Django 코드 설치","anchor":"install-the-django-code","children":[{"title":"Installing an official release with pip","anchor":"installing-an-official-release-with-pip","children":[]},{"title":"Installing a distribution-specific package","anchor":"installing-a-distribution-specific-package","children":[]},{"title":"Installing the development version","anchor":"installing-the-development-version","children":[]}]}],"breadcrumbs":[{"docname":"topics/index","title":"Django 사용하기","url":"/ko/4.2/topics/"}],"prev":{"docname":"topics/index","title":"Django 사용하기","url":"/ko/4.2/topics/"},"next":{"docname":"topics/db/index","title":"모델과 데이터베이스","url":"/ko/4.2/topics/db/"},"formats":{"html":"/ko/4.2/topics/install/","markdown":"/ko/4.2/topics/install.md","json":"/ko/4.2/topics/install.json"},"source":"https://github.com/django/django/blob/stable/4.2.x/docs/topics/install.txt","official":"https://docs.djangoproject.com/ko/4.2/topics/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"]}