장고(django) 프레임워크를 이용하기 위해서는 먼저 파이썬이 설치되어 있어야 한다.
그러므로 먼저 파이썬 설치 여부를 확인해본 후, 필요하다면 아래와 같이 설치하도록 한다.
1. Python 설치
root@seoul:~# which python
/usr/bin/python
https://www.python.org/download/
4) 정상적으로 설치되었는지는 아래와 같이 확인한다.
root@seoul:~# python
Python 2.7.3 (default, Dec 18 2014, 19:10:20)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
2. django 설치
1) 설치여부 확인
django의 설치 여부는 아래와 같이 파이썬을 실행시킨 후 import django 를 입력한다.
입력한 명령이 에러 없이 성공적으로 수행될 경우, Django가 성공적으로 설치된 것이다.
아래는 설치되지 않은 경우이다.
root@seoul:~# python
Python 2.7.3 (default, Dec 18 2014, 19:10:20)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named django
>>>
2) django 설치
(1) pip 설치되어 있지 않다면 pip 부터 설치한다
pip는 다음 링크에서 설치가능하다
https://pip.pypa.io/en/stable/installing.html
(2) django 설치
root@seoul:~# sudo pip install Django
만약 virtualenv 환경에서 작업중이라면 sudo 나 관리자 권한은 필요없으므로 아래와 같이 한다.
root@seoul:~# . /root/myproject/venv/bin/activate
(venv)root@seoul:~# pip install Django
(3) django 설치 확인
(venv)root@seoul:~# python
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> print(django.get_version())
1.8.2
>>>
'프로그래밍 Programming' 카테고리의 다른 글
[django] 프로젝트 생성, 데이터베이스 설정, 서버 실행 (Creating a project, Database setup, The development server) (0) | 2015.07.13 |
---|---|
[django] Django 설치하기 (0) | 2015.07.11 |
numpy - Arrays (9) (Vector and matrix mathematics) (0) | 2015.04.16 |
numpy - Arrays (8) (ArrayArray item selection and manipulation) (0) | 2015.04.11 |
numpy - Arrays (7) (Comparison operators and value testing) (0) | 2015.04.11 |