http://django-chinese-docs.readthedocs.org/en/latest/topics/db/models.html 通常在项目中的models.py文件中建表的 This example model defines a Person, which has a first_name and last_name: from django.db import models class Person(models.Model): first_name = models.…
Linux 后台运行Python脚本 1.安装Python:(python 3.5.4) 2.安装Python依赖包: 2.1 处理Python更新后yum无法正常使用的问题 (错误信息: -bash: /usr/bin/yum: /usr/bin/python_old2: bad interpreter: No such file or directory) 处理方法:1.查找yum信息 whereis yum 查看yum的安装目录 2.查看Python信息whereis python 查看…
今天ytkah在运行python文件时出现错误,提示如下,很明显这是没有定义python文件编码引起的问题,那么要怎么解决呢?很简单,在文件头部定义一下就可以了. File "hello.py", line 6 SyntaxError: Non-UTF-8 code starting with '\xb5' in file hello.py on line 6, but no encoding declared; see http://python.org/dev/peps/pep-0…