django安装与卸载

  • Post author:
  • Post category:其他



安装

D:\Django-1.8.2>python setup.py install

running install

Installed d:\python27\lib\site-packages\django-1.8.2-py2.7.egg

Processing dependencies for Django==1.8.2

Finished processing dependencies for Django==1.8.2


查看版本号及安装路径

D:\Django-1.8.2>python

Python 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] on win

32

Type “help”, “copyright”, “credits” or “license” for more information.

>>>

import django


>>>

django.VERSION


(1, 8, 2, ‘final’, 0)

>>>

print(django.__path__)


卸载

删除安装路径的django目录

转载于:https://www.cnblogs.com/wnfindbug/p/5581113.html