Install python3 on MacOS: brew install python3 Come alone with python3, there are also some other tools are installed as well, for examlpe: 'pip, setuptools'... We need 'pip' to help us install virtualenv. Why virtualenv? Main reason is to resolve th…
一. install python 1) check install or not 在mac终端输入命令:which python 即可查看python的路径 2)未安装时,手动下载安装包 地址:https://www.python.org/downloads/ 选择下载 Mac OS X 64-bit/32-bit installer 安装 二. install twisted 1) check install or not 在mac终端输入命令:$ python Python 2.7.1…
常规的模板渲染 from django.db import models # Create your models here. class ArticalType(models.Model): caption = models.CharField(max_length=16) class Category(models.Model): caption = models.CharField(max_length=16) class Artical(models.Model): title = mo…