Blogger Information
Blog 29
fans 0
comment 0
visits 23884
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Django的安装及配置环境变量
easy
Original
712 people have browsed it

Django 是使用 Python 语言开发的一款免费而且开源的 Web 应用框架。由于 Python 语言的跨平台性,所以 Django 同样支持 Windows、Linux 和 Mac 系统。

在window系统安装Django

装备工具

window系统

python

pip

参考

阿里巴巴开源镜像站

使用pip安装

先把pypi切换为国内的阿里爸爸的pypi镜像源

a. 找到下列文件(windows目录:C:\Users\Administrator)

~/.pip/pip.conf

b. 在上述文件中添加或修改:

[global]
index-url = https://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com

打开cmd窗口输入

pip install Django

 查看Django是否成功安装

cmd窗口输入python进入python

>>> import django
>>> django.get_version()

通过以上指令可以查到Django版本号就算可以了

 配置环境变量

#diango路径

C:\Python3.5\Lib\site-packages\django\bin

#python 的scripts路径

C:\Python3.5\Scripts

上面要按自己的安装路径修改

目的,就是让他能找到django-admin.py

添加完成后就可以使用Django的django-admin.py命令

完成


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post