Differences between revisions 1 and 2
Revision 1 as of 2011-09-16 11:33:52
Size: 330
Editor: 211
Comment:
Revision 2 as of 2012-12-27 15:14:37
Size: 456
Editor: 61
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
모든 패키지 업데이트하기
{{{
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U
}}}

Python deployment 도구

http://pypi.python.org/pypi/pip

easy_install에 비해 다음과 같은 장점을 지닌다.

  • 패키지를 버전별로 설치할 수 있다.
  • 설치내역들을 저장해뒀다가 deployment에 써먹을 수 있다.

모든 패키지 업데이트하기

pip freeze --local | grep -v '^\-e' | cut -d = -f 1  | xargs pip install -U


SeeAlso VirtualEnv, Fabric


CategoryProgramLibrary

Pip (last edited 2012-12-27 15:14:37 by 61)

web biohackers.net