一、搭建环境
1、创建Python虚拟环境
(base) C:\Users\35351>conda create -n django_study python=3.9
2、安装Django
(django_study) C:\Users\35351>pip install Django
>> 查看安装版本
(django_study) C:\Users\35351>python -m django --version
3、安装完后的目录结构
下图仅为示意:具体所在目录以自己安装目录为准
二、Pycharm中创建项目
1、 New Project
项目目录文件:
2、创建app
注意:如果有多个虚拟环境,记得要切进manage.py的Terminal窗口
以Helloworld为例:
APP的目录结构: