django开发环境

django和python版本选择

目前django版本已经到了1.10,应该马上会升到2.0版本,2.0版本后将会彻底放弃python2的支持,仅支持python3,所以为了跟上节奏,本专题将python35和django1.10版本。
django和python的安装比较简单,相信都没有问题。这里先略过,以后有时间再来补上。大致过程如下:
安装python35
安装django1.10
安装数据库mysql
参考:http://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html
安装mysql-python

验证安装是否正常

# python和django版本验证
C:\Users\max352>python35
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.__version__
'1.10.2'
>>> exit()
# mysql验证
C:\Users\max352>mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 423
Server version: 5.6.34 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

编辑器/IDE选择

根据个人爱好,选择自己常用的就OK。对于python开发人员,我比较推荐pycharm,对django开发的支持非常友好,如果你还没有用过其他IDE的话,推荐你尝试一下。这是一个收费的IDE,如果不差钱还是购买一个吧,支持一下开发人员。

准备好基本的开发环境,就可以开始我们的代码之旅了。

你可能感兴趣的:(django开发环境)