一、安裝django:
因為之前安裝好了python3和pip,這裡直接使用:
pip install django測試是否安裝好:
進入project目錄,建立helloworld專案:
c:\users\bin>d:然後執行:d:\>cd django
d:\django>django-admin.py startproject helloworld
d:\django>tree
卷序列號為 000000fa 00ee:cfd6
d:.└─helloworld
└─helloworld
d:\django\helloworld>python manage.py runserver 0.0.0.0:8000
performing system checks...
system check identified no issues (0 silenced).
看到如下圖就是執行成功:
Django 學習筆記 一
1.準備工作 安裝python www.python.org 安裝django www.djangoproject.com python的安裝目錄是 c python27 django的安裝目錄是 c django 1.4.5 專案的目錄是 d python27 將以下位址匯入環境變數path c ...
Django 學習筆記一
adnin 站點檢視view rom django.contrib import admin from polls.models import choice,poll class choiceinline admin.stackedinline model choice 繼承的模型 extra 3 ...
Django學習筆記一
一 安裝django 因為之前安裝好了python3和pip,這裡直接使用 pip install django測試是否安裝好 進入project目錄,建立helloworld專案 c users bin d d cd django d django django admin.py startpro...