Linux 上安装 Django:
apt-get 安装方法
默认情况下 Linux 环境已经支持了Python。你可以在终端输入Python命令来查看是否已经安装。
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
安装 setuptools
命令:下载和安装
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
完成之后,就可以使用 easy_install 命令安装 django
easy_install django
之后我们在python解释器输入以下代码:
[root@solar django]# python
Python 2.7.3 (default, May 15 2014, 14:49:08)
[GCC 4.8.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(1, 6, 5, 'final', 0)
>>>
我们可以看到输出了Django的版本号,说明安装成功。
setuptools安装补充
Setuptools的官方页面:https://pypi.python.org/pypi/setuptools#unix-wget
Easily download, build, install, upgrade, and uninstall Python packages
它是一个对python的包进行安装,升级,卸载的模块(包)
python2.x:
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
python3.x
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python3.4
若是你在没有安装该模块的前提下,安装别的包,会出错提示:
ImportError: No module named setuptools