我第一次安装 Django(并使用 python)。我运行 Mac OSX 10.8 Mountain Lion,默认情况下,python 已经安装:
$ python
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
我已按照https://docs.djangoproject.com/en/1.4/intro/install/的步骤进行操作,即:
在https://www.djangoproject.com/download/下载 Django并运行以下命令:
$ tar xzvf Django-1.4.1.tar.gz
$ cd Django-1.4.1
$ sudo python setup.py install
这在/user/local/bin中创建了一个符号链接,它允许我从任何地方调用 Django$ django-admin.py
但是,尝试以下失败:
$ python
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>>
打字后我应该得到一些东西>>> import django
>>> print django.get_version()
1.4
是我遗漏了什么还是文档不那么准确?