回顾创建项目报错
Posted zhangningyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回顾创建项目报错相关的知识,希望对你有一定的参考价值。
一、创建虚拟环境
- 安装虚拟环境pip install virtualenv
- 创建虚拟环境virtualenv venv(venv就是虚拟环境名称,自定义)
- 进入虚拟环境venvScriptsactivate
- 安装所需软件:pip install django==1.9.6
- 退出deactivate
二、创建项目
- 进入虚拟环境,执行命令python django-admin.py startproject znytest,(创建项目),若出现报错找不到django-admin.py,在venv找到复制到当前目录即可
- 创建应用 在znytest中执行命令 python manage.py startapp app01 若出现报错django.utils.encoding.DjangoUnicodeDecodeError: ‘utf8‘ codec can‘t decode byte 0xd5 in position 9: invalid continuation byte. You passed in ‘C:\\Users\\xd5xc5xc4xfexd1xf4\\znytest\\db.sqlite3‘ (<type ‘str‘>)在settings中将数据库改为mysql即可
DATABASES = { ‘default‘: { ‘ENGINE‘: ‘django.db.backends.mysql‘, ‘NAME‘: ‘test‘, ‘USER‘: ‘root‘, ‘PASSWORD‘: ‘root‘, ‘HOST‘: ‘127.0.0.1‘, ‘PORT‘: ‘3306‘, } }
在settings.py同目录下的__init__.py中
import pymysql pymysql.install_as_MySQLdb()
windows安装mysql:http://www.cnblogs.com/zhangningyang/p/7479112.html#lod6,若出现找不到msvcr120.dll安装vcredist_x64.exe即可,https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=40784
以上是关于回顾创建项目报错的主要内容,如果未能解决你的问题,请参考以下文章
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段
错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段
SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段