码迷,mamicode.com
首页 > 编程语言 > 详细

Python开发之Django框架入门(1)Django安装

时间:2018-08-11 20:46:57      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:scripts   最好   安装完成   交互式   identify   技术分享   iter   bsd   doc   

Django是一个python类库,使用前必须安装好python。推荐使用Python3,支持python2.7的最新Django版本为1.11LTS.

一、安装方式:

使用pip命令安装。

                             pip install Django==2.1      (此命令可以指定安装版本)

                             pip install Django               (此命令安装最新版本)

使用pip卸载旧的版本

 

                     

How to get Django

Django is available open-source under the BSD license. We recommend using the latest version of Python 3. The last version to support Python 2.7 is Django 1.11 LTS. See the FAQ for the Python versions supported by each version of Django. Here’s how to get it:

Option 1: Get the latest official version

The latest official version is 2.1. Read the 2.1 release notes, then install it with pip:

pip install Django==2.1

Option 2: Get the latest development version

The latest and greatest Django version is the one that’s in our Git repository (our revision-control system). This is only for experienced users who want to try incoming changes and help identify bugs before an official release. Get it using this shell command, which requires Git:

git clone https://github.com/django/django.git

You can also download a gzipped tarball of the development version. This archive is updated every time we commit code.

一、安装Django

1. 通过pip安装Django

 

如果你是通过升级的方式安装Django,那么你需要先卸载旧的版本。

Django提供3种发行版本,推荐使用官方的稳定版本:

  • 你的操作系统提供的发行版本(Linux)
  • 官方稳定版本(推荐)
  • 开发测试版本

Django本质上是Python语言的一个类库,因此可以通过pip工具安装。这也是最简便最好的安装方式。不建议通过下载安装包或者编译源码进行安装的方法,除非你的环境无法连接外部网络。

这里介绍windows系统下pip命令安装方式。

win+r,调出cmd,运行命令:pip install django,自动安装PyPi提供的最新版本。

如果要指定版本,可使用pip install django==1.10这种形式。

安装完成后如下图所示:

技术分享图片

如果你看到本教程的时候,Django的版本已经发生了很大的变化,那么你可能需要注意一些版本之间的不同之处,最好的办法,就是指定安装与教程一样的1.11.6版本。

在Linux操作系统中,也是一样,使用pip工具包安装Django。

2. 验证安装

进入Python交互式环境(注意一定要进入刚才安装了Django的Python解释器),按下面所示查看安装版本:

>>> import django
>>> print(django.get_version())
1.11

We’ll assume you have Django installed already. You can tell Django is installed and which version by running the following command in a shell prompt (indicated by the $ prefix):

$ python -m django --version



或者使用pip list命令,查看是否存在Django模块。

3. 配置系统环境

成功安装Django后,以windows为例,在Python根目录下的Scripts目录中可找到一个django-admin.exe文件,这是Django的核心管理程序,最好将它加入操作系统的环境变量中,这样在以后的调用会比较方便。

如何进入环境变量设置界面,参考Python教程中的相关部分。如下图所示,在Path变量中添加Scripts目录。

技术分享图片

回到cmd界面,运行django-admin help,能看到下面的内容表示环境变量设置成功。

技术分享图片

 


 

Python开发之Django框架入门(1)Django安装

标签:scripts   最好   安装完成   交互式   identify   技术分享   iter   bsd   doc   

原文地址:https://www.cnblogs.com/yangjingzhao/p/9460896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!