System에 있는 python 환경을 쓰는게 아니라 개발 또는 배포를 위해 만들 프로그램에 맞게
python 가상 환경 생성
1. 설치
pip install virtualenv
2. 가상 환경 설정
virtualenv -p /usr/bin/python2.7 prj1 (python 2.7 환경으로 pj1 프로젝트 생성0
3. 가상 환경 사용
export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}/prj1/lib/python2.7~~"
1) shell 일 경우
cd prj1/bin
source ./activate
2) python 일 경우
activate_this = '<path to virtual env>/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
pip install 설치 또는
프로그램 실행...
'Language > python' 카테고리의 다른 글
python 버전 바꾸기 (0) | 2018.01.03 |
---|---|
python elk (0) | 2017.06.06 |
python fabric 설치 (0) | 2017.06.06 |
python 인스톨 스크립트 작성 (0) | 2017.05.30 |
[web] flask 기본 (0) | 2017.04.25 |