nodejs용 python 최신버전 인스톨
python 최신버전 인스톨
nodejs는 2.7버젼을 필요로 하지만
레드햇(센토스)버젼에는 2.4버젼에 인스톨되어 있습니다.
삭제는 불가능하므로 2.7버젼을 설치 방법입니다.
1. GCC컴파일러 설치. (설치가 되어 있지 않다면)
yum install gcc
2. cd /usr/src
wget https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz
3. 압축해제
tar xzf Python-2.7.8.tgz
cd Python-2.7.8
./configure
make altinstall
"make altinstall is used to prevent replacing the default" -> 기본값이 대체되는 것을 방지
python binary file /usr/bin/python. -> 바이너리 파일 위치(확인)
4. 버젼확인
python2.7 -V
nodejs는 2.7버젼을 필요로 하지만
레드햇(센토스)버젼에는 2.4버젼에 인스톨되어 있습니다.
삭제는 불가능하므로 2.7버젼을 설치 방법입니다.
1. GCC컴파일러 설치. (설치가 되어 있지 않다면)
yum install gcc
2. cd /usr/src
wget https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz
3. 압축해제
tar xzf Python-2.7.8.tgz
cd Python-2.7.8
./configure
make altinstall
"make altinstall is used to prevent replacing the default" -> 기본값이 대체되는 것을 방지
python binary file /usr/bin/python. -> 바이너리 파일 위치(확인)
4. 버젼확인
python2.7 -V
댓글
댓글 쓰기