
Python3
Eos0422
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python3 Django使用mysql
文章目录环境settings文件配置init 文件配置 环境 Python:3.x 模块:pymysql settings文件配置 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', #数据库引擎 'NAME': 'test', #数据库...原创 2019-04-09 09:40:50 · 418 阅读 · 0 评论 -
Django 部署Apache
文章目录1、我的环境2、建立Python与Apache的链接3、为Django新建配置文件 1、我的环境 OS: Ubuntu 14.04 Apache: Apache2.4 sudo apt-get install apache2 #安装Apache apachectl -v #检查Apache版本,ubunt 14.04没经过其他设置,默认应该是Apache2.4 Python: Python...原创 2019-04-09 09:43:08 · 355 阅读 · 0 评论