프로그래밍 Programming
[웹사이트 만들기] (2) Django 설치 Installing django
문장전달자
2014. 12. 10. 18:21
728x90
https://www.djangoproject.com
[Complete Installation Guide]
https://docs.djangoproject.com/en/1.7/topics/install/
Django 설치
[root@jpalace root]# wget http://www.djangoproject.com/download/1.3.1/tarball/
[root@jpalace root]# tar xzvf Django-1.3.1.tar.gz[root@jpalace root]# cd Django-1.3.1[root@jpalace root]# python setup.py install
설치된 버전 확인
[root@jpalace data]# pythonPython 2.7 (r27:82500, Dec 10 2014, 16:41:56)[GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> from django import get_version>>> get_version()'1.3.1'>>>
728x90