---
title: "Django のインストール方法"
version: 1.11
locale: ja
source: https://docs.djangoproject.com/ja/1.11/topics/install/
canonical: https://djangodocs.dev/ja/1.11/topics/install/
---
# Django のインストール方法

このドキュメントを読めば、Django をセットアップして、起動することができます。

## Python をインストールする

Django は Python の Web フレームワークなので、 Django を使うには Python が必要です。詳細は [どのバージョンの Python でどのバージョンの Django が使えますか?](/ja/1.11/faq/install/#faq-python-version-support) を見てください。

最新版のPythonを <https://www.python.org/downloads/> もしくはOSのパッケージ管理ツールで取得してください。

> **Django on Jython**
>
> もし [Jython](http://jython.org/) (Python のJava プラットフォーム実装) を使っている場合は、いくつか追加のステップを実行する必要があります。詳細は [Running Django on Jython](/ja/1.11/howto/jython/) を見てください。

> **Python on Windows**
>
> もし Windows を使っていてこれから Django を始めるなら、 [Windows での Django のインストール方法](/ja/1.11/howto/windows/) を読むとよいでしょう。

## Apache と `mod_wsgi` のインストール

もし単に Django を使って実験したいだけなら、このセクションは飛ばしてください。 Django には軽量 web サーバーが含まれており、テスト用にそれが使えます。本番環境にデプロイするときまで、 Apache をセットアップする必要はありません。

If you want to use Django on a production site, use [Apache](https://httpd.apache.org/) with
[mod\_wsgi](http://www.modwsgi.org/). mod\_wsgi can operate in one of two modes: an embedded
mode and a daemon mode. In embedded mode, mod\_wsgi is similar to
mod\_perl -- it embeds Python within Apache and loads Python code into
memory when the server starts. Code stays in memory throughout the
life of an Apache process, which leads to significant performance
gains over other server arrangements. In daemon mode, mod\_wsgi spawns
an independent daemon process that handles requests. The daemon
process can run as a different user than the Web server, possibly
leading to improved security, and the daemon process can be restarted
without restarting the entire Apache Web server, possibly making
refreshing your codebase more seamless. Consult the mod\_wsgi
documentation to determine which mode is right for your setup. Make
sure you have Apache installed, with the mod\_wsgi module activated.
Django will work with any version of Apache that supports mod\_wsgi.

インストール完了後の mod\_wsgi の設定方法に関する情報については、[Django を Apache と mod\_swgi とともに使うには？](/ja/1.11/howto/deployment/wsgi/modwsgi/) を読んでください。

何らかの理由により mod\_wsgi が使えなかったとしても、心配はいりません。Django は他にもさまざまな開発オプションをサポートしています。そのうちの一つは [uWSGI](/ja/1.11/howto/deployment/wsgi/uwsgi/) で、[nginx](http://nginx.org/) と非常に上手く連携できます。さらに、Django は WSGI の仕様 ([**PEP 3333**](https://peps.python.org/pep-3333/)) を満たしているので、各種のサーバープラットフォーム上で動作することが保証されています。

## データベースを動かす

Django のデータベース API 機能を使う予定なら、 データベースサーバーが動いている必要があります。 Django はたくさんのデータベースサーバーをサポートしており、また [PostgreSQL](https://www.postgresql.org/), [MySQL](https://www.mysql.com/), [Oracle](https://www.oracle.com/), [SQLite](https://www.sqlite.org/) からは公式にサポートされています。

もしあなたが開発しているプロジェクトがシンプルなものか、あるいは本番環境にデプロイしないプロジェクトなら、通常は SQLite が最もシンプルな選択肢です。というのは、 SQLite 用にサーバーを動かす必要が無いからです。しかし、 SQLite は他のデータベースと色々な点で違います。そのため、もし何か重要なものを作る場合は、本番環境で使うデータベースと同じものを使うことを推奨します。

公式にサポートされているデータベースの他に、サードパーティ製のバックエンドもあります（これらを使うと、他のデータベースを Django から使えます）。

バックエンドに加えて、 Python のデータベースバインディングをインストールする必要があります。

- もし PostgreSQL を使うなら、 [psycopg2](http://initd.org/psycopg/) パッケージが必要になります。詳細は [PostgreSQL notes](/ja/1.11/ref/databases/#postgresql-notes) を見てください。
- MySQL を使うなら、 `mysqlclient` のような [DB API driver](/ja/1.11/ref/databases/#mysql-db-api-drivers) が必要になります。詳細は [notes for the MySQL backend](/ja/1.11/ref/databases/#mysql-notes) を見てください。
- SQLite を使うなら、 [SQLite backend notes](/ja/1.11/ref/databases/#sqlite-notes) を読むと良いでしょう。
- Oracle を使うなら [cx\_Oracle](https://oracle.github.io/python-cx_Oracle/) のコピーが必要ですが、 [notes for the Oracle backend](/ja/1.11/ref/databases/#oracle-notes) を読んで、 Oracle と `cx_Oracle` の両方について、 Django がサポートするバージョンを確認してください。
- もし非公式のサードパーティ製バックエンドを使う場合、その他の動作要件についてはそのドキュメントを確認してください。

もし Django の `manage.py migrate` コマンドを使って自動的にデータベースのテーブルを作る (Django のインストールとプロジェクト作成のあとに) つもりなら、そのデータベースに対して Django が create table, alter table のパーミッションを持つ必要があります。一方、手動でテーブルを作るつもりなら、 Django に対して `SELECT`, `INSERT`, `UPDATE`, `DELETE` のパーミッションを与えるだけでOKです。これらのパーミッションを付与してデータベースユーザを作成したあと、プロジェクトの設定ファイルで詳細を指定することになります。詳細については [`DATABASES`](/ja/1.11/ref/settings/#std-setting-DATABASES) を見てください。

データベースのクエリをテストするために Django の [testing framework](/ja/1.11/topics/testing/) を使う場合、テスト用データベースを作成するためのパーミッションが Django に必要です。

## 古いバージョンの Django を削除する

If you are upgrading your installation of Django from a previous version,
you will need to uninstall the old Django version before installing the
new version.

If you installed Django using [pip](https://pip.pypa.io/) or `easy_install` previously, installing
with [pip](https://pip.pypa.io/) or `easy_install` again will automatically take care of the old
version, so you don't need to do it yourself.

If you previously installed Django using `python setup.py install`,
uninstalling is as simple as deleting the `django` directory from your Python
`site-packages`. To find the directory you need to remove, you can run the
following at your shell prompt (not the interactive Python prompt):

```console
$ python -c "import django; print(django.__path__)"
```

## Install the Django code

Installation instructions are slightly different depending on whether you're
installing a distribution-specific package, downloading the latest official
release, or fetching the latest development version.

It's easy, no matter which way you choose.

### Installing an official release with `pip`

This is the recommended way to install Django.

1. Install [pip](https://pip.pypa.io/). The easiest is to use the [standalone pip installer](https://pip.pypa.io/en/latest/installing/#installing-with-get-pip-py). If your
   distribution already has `pip` installed, you might need to update it if
   it's outdated. If it's outdated, you'll know because installation won't
   work.
2. Take a look at [virtualenv](https://virtualenv.pypa.io/) and [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/). These tools provide
   isolated Python environments, which are more practical than installing
   packages systemwide. They also allow installing packages without
   administrator privileges. The [contributing tutorial](/ja/1.11/intro/contributing/) walks through how to create a virtualenv on Python 3.
3. After you've created and activated a virtual environment, enter the command
   `pip install Django` at the shell prompt.

### Installing a distribution-specific package

Check the [distribution specific notes](/ja/1.11/misc/distributions/) to see if
your platform/distribution provides official Django packages/installers.
Distribution-provided packages will typically allow for automatic installation
of dependencies and easy upgrade paths; however, these packages will rarely
contain the latest release of Django.

### Installing the development version

> **Tracking Django development**
>
> If you decide to use the latest development version of Django,
> you'll want to pay close attention to [the development timeline](https://code.djangoproject.com/timeline),
> and you'll want to keep an eye on the [release notes for the
> upcoming release](/ja/1.11/releases/#development-release-notes). This will help you stay
> on top of any new features you might want to use, as well as any changes
> you'll need to make to your code when updating your copy of Django.
> (For stable releases, any necessary changes are documented in the
> release notes.)

If you'd like to be able to update your Django code occasionally with the
latest bug fixes and improvements, follow these instructions:

1. Make sure that you have [Git](https://git-scm.com/) installed and that you can run its commands
   from a shell. (Enter `git help` at a shell prompt to test this.)
2. Check out Django's main development branch like so:

   ```console
   $ git clone git://github.com/django/django.git
   ```

   This will create a directory `django` in your current directory.
3. Make sure that the Python interpreter can load Django's code. The most
   convenient way to do this is to use [virtualenv](https://virtualenv.pypa.io/), [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/), and
   [pip](https://pip.pypa.io/). The [contributing tutorial](/ja/1.11/intro/contributing/) walks through
   how to create a virtualenv on Python 3.
4. After setting up and activating the virtualenv, run the following command:

   ```console
   $ pip install -e django/
   ```

   This will make Django's code importable, and will also make the
   `django-admin` utility command available. In other words, you're all
   set!

When you want to update your copy of the Django source code, just run the
command `git pull` from within the `django` directory. When you do this,
Git will automatically download any changes.
