このドキュメントを読めば、Django をセットアップして、起動することができます。
Django は Python のウェブフレームワークです。詳細は :ref:`faq-python-version-support`を参照してください。
最新版のPythonを https://www.python.org/downloads/ もしくはOSのパッケージ管理ツールで取得してください。
Django on Jython
Jython (a Python implementation for the Java platform) is not compatible with Python 3, so Django ≥ 2.0 cannot run on Jython.
Python on Windows
もし Windows を使っていてこれから Django を始めるなら、 Windows での Django のインストール方法 を読むとよいでしょう。
mod_wsgi
のインストール¶もし単に Django を使って実験したいだけなら、このセクションは飛ばしてください。 Django には軽量 web サーバーが含まれており、テスト用にそれが使えます。本番環境にデプロイするときまで、 Apache をセットアップする必要はありません。
If you want to use Django on a production site, use Apache with mod_wsgi. mod_wsgi operates in one of two modes: embedded mode or 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. 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 とともに使うには? を読んでください。
何らかの理由により mod_wsgi が使えなかったとしても、心配はいりません。Django は他にもさまざまな開発オプションをサポートしています。そのうちの一つは uWSGI で、nginx と非常に上手く連携できます。さらに、Django は WSGI の仕様 (PEP 3333) を満たしているので、各種のサーバープラットフォーム上で動作することが保証されています。
Django のデータベース API 機能を使う予定なら、 データベースサーバーが動いている必要があります。 Django はたくさんのデータベースサーバーをサポートしており、また PostgreSQL, MySQL, Oracle, SQLite からは公式にサポートされています。
If you are developing a simple project or something you don't plan to deploy in a production environment, SQLite is generally the simplest option as it doesn't require running a separate server. However, SQLite has many differences from other databases, so if you are working on something substantial, it's recommended to develop with the same database that you plan on using in production.
公式にサポートされているデータベースの他に、サードパーティ製のバックエンドもあります(これらを使うと、他のデータベースを Django から使えます)。
バックエンドに加えて、 Python のデータベースバインディングをインストールする必要があります。
mysqlclient
のような DB API driver が必要になります。詳細は notes for the MySQL backend を見てください。cx_Oracle
の両方について、 Django がサポートするバージョンを確認してください。もし Django の manage.py migrate
コマンドを使って自動的にデータベースのテーブルを作る (Django のインストールとプロジェクト作成のあとに) つもりなら、そのデータベースに対して Django が create table, alter table のパーミッションを持つ必要があります。一方、手動でテーブルを作るつもりなら、 Django に対して SELECT
, INSERT
, UPDATE
, DELETE
のパーミッションを与えるだけでOKです。これらのパーミッションを付与してデータベースユーザを作成したあと、プロジェクトの設定ファイルで詳細を指定することになります。詳細については DATABASES
を見てください。
データベースのクエリをテストするために Django の testing framework を使う場合、テスト用データベースを作成するためのパーミッションが Django に必要です。
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.
pip
¶This is the recommended way to install Django.
Install pip. The easiest is to use the standalone pip installer. 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.
Take a look at virtualenv and virtualenvwrapper. 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 walks through how to create a virtualenv.
After you've created and activated a virtual environment, enter the command:
$ pip install Django
...\> pip install Django
Check the distribution specific notes 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.
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, and you'll want to keep an eye on the release notes for the upcoming release. 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:
Make sure that you have Git installed and that you can run its commands
from a shell. (Enter git help
at a shell prompt to test this.)
Check out Django's main development branch like so:
$ git clone https://github.com/django/django.git
...\> git clone https://github.com/django/django.git
This will create a directory django
in your current directory.
Make sure that the Python interpreter can load Django's code. The most convenient way to do this is to use virtualenv, virtualenvwrapper, and pip. The contributing tutorial walks through how to create a virtualenv.
After setting up and activating the virtualenv, run the following command:
$ pip install -e django/
...\> 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.
3月 30, 2019