Introfor

Django 설치 본문

Doing/Web

Django 설치

YongArtist 2016. 7. 21. 22:49

1. python 설치
https://www.python.org/


2. python setuptools 설치
https://pypi.python.org/pypi/setuptools

ez_setup.py를 다운로드한 후 python으로 실행시켜 설치한다.
그런 후 C:/Python27/Scripts/ 를 환경 변수에 추가한 후 easy_install-2.7 pip를 cmd에 실행하면 pip가 설치된다.


3. Django 설치
https://www.djangoproject.com/

Download 클릭


Latest release: Django-1.9.9 tar.gz 다운로드


C:\Django-1.9.8에 압축 해제한다.


cmd 창에서 python setup.py install로 Django를 설치한다.


C:\Django-1.9.8\django\bin에 django-admin.py가 생성된 것을 확인할 수 있다.
django-admin.py를 C:\Django 경로에 저장시킨 후 Django-1.9.8 폴더 삭제 (C드라이브에 Django폴더 생성)


python django-admin.py --version으로 설치가 제대로 이뤄졌는지 확인한다.


python django-admin.py startproject sample로 sample 명을 가진 프로젝트를 생성한다.


프로젝트가 생성된 것을 확인한다.


python manage.py runserver 장고 내장 서버를 실행시킨다.


홈페이지에 http://127.0.0.1/8080를 입력하면 될 것이다.



File "C:\Python27\Lib\functools.py", line 56, in <lambda>

    '__lt__': [('__gt__', lambda self, other: other < self)

만약 위와 같은 오류가 발생한다면
C:\Python27\Lib에 위치한 functools.py의 내부에 convert 부분을 아래와 같이 수정하면 된다.

convert = {

'__lt__': [('__gt__', lambda self, other: not (self < other or self == other)),

           ('__le__', lambda self, other: self < other or self == other),

           ('__ge__', lambda self, other: not self < other)],

'__le__': [('__ge__', lambda self, other: not self <= other or self == other),

           ('__lt__', lambda self, other: self <= other and not self == other),

           ('__gt__', lambda self, other: not self <= other)],

'__gt__': [('__lt__', lambda self, other: not (self > other or self == other)),

           ('__ge__', lambda self, other: self > other or self == other),

           ('__le__', lambda self, other: not self > other)],

'__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),

           ('__gt__', lambda self, other: self >= other and not self == other),

           ('__lt__', lambda self, other: not self >= other)]

}

'Doing > Web' 카테고리의 다른 글

[SQL] select from...  (0) 2016.05.11
[PHP] 어느 경로에 특정 파일or디렉토리 존재 여부 판단  (0) 2016.05.11
[PHP] 파일 복사, 삭제, 이름 변경  (0) 2016.05.10
[HTML]form태그 속성  (0) 2016.05.10
[PHP]$_FILES  (0) 2016.05.10
Comments