天天看点

Django:虚拟环境及项目的搭建

一、虚拟环境

1.安装

pip3 install virtualenv
           

2.创建虚拟环境

virtualenv 环境名称
           
virtualenv 环境名称 --python=python3.6
//指定版本
           

3.激活、退出虚拟环境

cd Scripts //进入目录
activate//执行激活
deacticate//执行退出
           

4.在虚拟环境中安装模块

  • 激活虚拟环境
  • 在激活虚环境中安装模块
    pip3 insrall django==1.11.7
               

二、搭建项目环境(django+虚拟环境)

Django:虚拟环境及项目的搭建

三、本地配置

local_settings.py

1.在settings中导入

try:
    from.local_settings import *
except ImportError:
    pass
           

2、创建自己的本地配置

Django:虚拟环境及项目的搭建
本地配置中新定义变量时,在settings中体现变量
上传git时忽略local_settings.py
           

3、忽略文件 .gitignore

# pycharm
.idea/
.DS_Store

_pycache__/
*.py[cod]
*$py.class

# Django stuff:
local_settings.py
*.sqlite3

# database migrations
*/migtations/*.py
!*/migrations/__init__.py
           

4、上传gitee

1、git init
2、git add .
3、git commit -m '第一次提交'
4、git remote add origin https://gitee.com/xxx/xxxx
5、git push origin master
           

5、测试获得代码

进入目录
git clone https://gitee.com/xxx/xxxx