参考文献 最新Pythonエクスプローラー
Djangoとは
Djangoの実績
Django特徴
Ubuntu(Debian)の例
>aptitude search python | grep ^i i python - An interactive high-level object-oriented i A python-central - register and build utility for Python pack i python-minimal - A minimal subset of the Python language (d i A python-support - automated rebuilding support for python mo i python2.4 - An interactive high-level object-oriented i python2.4-minimal - A minimal subset of the Python language (v i A python2.5 - An interactive high-level object-oriented i A python2.5-minimal - A minimal subset of the Python language (v >aptitude search django >aptitude show python-django >aptitude install python-django
現時点での最新版は0.96 http://www.djangoproject.com/ Ubuntuのレポジトリにミラーされているのは Django 0.96 最新版であることを確認。
DBにはMySQLといきたいところだけれど、面倒なのでSQLiteを採用
SQLiteはDjangoと一緒にInstallされたけれど一応
>aptitude install python-sqlite
でインストールをした
インストールの確認方法。 python のInteractiveシェルで以下のように。実行して結果を確認。
>python Python 2.5.1 (r251:54863, Mar 7 2008, 03:41:45) [GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> django.VERSION (0, 96.099999999999994, None) >>> import pysqlite2 >>>
関連タグ :
インストール エラー easy_install チュートリアル install

