阅读:47
1. 首先访问网址:http://www.python.org/download/
下载最新的Python版本,如 👇 图所示
2. 安装下载包,一路 next
,注意选择安装 pip
3. 在系统的环境变量中找到 path
,然后添加python的安装目录
Python 命令参数
选项 | 描述 |
---|---|
-d | 在解析时显示调试信息 |
-O | 生成优化代码 ( .pyo 文件 ) |
-S | 启动时不引入查找Python路径的位置 |
-V | 输出Python版本号 |
-X | 从 1.6版本之后基于内建的异常(仅仅用于字符串)已过时 |
-c cmd | 执行 Python 脚本,并将运行结果作为 cmd 字符串 |
file | 在给定的python文件执行python脚本 |
集成开发环境Pycharm下载安装网址:https://www.jetbrains.com/pycharm/download/
目前我使用的还是 2017 的版本啦。。。 密钥可以网上搜搜或者是学生用户可以免费使用的哈
pip 命令安装DJango
pip3 install Django
显示安装路径的命令
添加环境变量
C:\users\asus\appdata\roaming\python\python38\site-packages\django\bin\
C:\users\asus\appdata\roaming\python\python38\Scripts\
成功则显示django
版本
Pycharm中的使用
在浏览器中输入网址:http://127.0.0.1:8000/
目录文件解释
1.manage.py
项目管理器:与项目进行交互的命令行工具集的入口,执行 python manage.py
查看所有命令
通过命令:python manage.py runserver
启动服务器
改变端口号只需输入命令后面加上端口号就行 如:python manage.py runserver 8001
2.wsgi.py
WSGI(Python Web Server Dateway Interface):Python 服务器网关接口,Python应用与Web服务器之间通信的接口。
3.urls.py
url配置文件,Django项目中所有地址(页面)都需要我们自己去配置其URL。
4._init_.py
Python中声明模块的文件,内容默认为空。
5.settings.py
项目的总配置文件,里面包含了数据库、Web应用、时间等各种配置。
"""
Django settings for Blog project.
Generated by 'django-admin startproject' using Django 2.2.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/ref/settings/
"""
import os
#项目根目录
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
#安全码(自动生成)
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '&(o%nz@cic5+f+t%8ufe-apcfl5(vf-r0ebk*t=@f0s@sx%la)'
# debug调试 生产模式时不用打开
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# 只允许通过的访问形式
# 比如:ALLOWED_HOSTS = ['localhost'],就只能通过localhost,127.0.0.1就会报错
ALLOWED_HOSTS = []
# Application definition
# 已安装的应用
# django项目工程是由许多的应用组成的,这里是一些默认生成的django自带应用
# 如果创建了自己的应用,要在这里写入,使django识别
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'Myblog.apps.MyblogConfig',
]
# 中间件
# django自带的工具集
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
# url根文件 指向:urls.py文件
ROOT_URLCONF = 'Blog.urls'
# 模板的配置
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'Blog.wsgi.application'
# 数据库配置
# Database
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# 国际化
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
# 语言:
LANGUAGE_CODE = 'en-us'
# 时区
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# 静态文件地址
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'