본문 바로가기
+ Development/Python

[Python] pip를 통해 모듈(Module) 업데이트

by :: Teacher :: 2019. 9. 24.
728x90
반응형

개발을 하다보면 모듈(라이브러리)가 업데이트 되는 경우가 있다. 

이때 모든 라이브러리를 업데이트 하여 사용하지는 않는다. 

그 이유는 라이브러리의 변화로 인해서 해당 라이브러리를 이용하여 개발된 부분이 비 정상적으로 동작하거나 아예 동작 안 할 수도 있다.

그러나, 위와 같이 특별히 문제가 없는 경우는 업데이트를 하는게 보안적으로나 여러방향으로 좋다.

아래와 같이 PIP 를 이용하여 업데이트를 하여 빠르게 진행할 수 있다.

$ pip freeze | grep "aniso8601"
aniso8601==7.0.0


$ pip install --upgrade aniso8601
Collecting aniso8601
  Downloading https://files.pythonhosted.org/packages/eb/e4/787e104b58eadc1a710738d4e418d7e599e4e778e52cb8e5d5ef6ddd5833/aniso8601-8.0.0-py2.py3-none-any.whl (43kB)
     |████████████████████████████████| 51kB 187kB/s 
Installing collected packages: aniso8601
  Found existing installation: aniso8601 7.0.0
    Uninstalling aniso8601-7.0.0:
      Successfully uninstalled aniso8601-7.0.0
Successfully installed aniso8601-8.0.0


$ pip freeze | grep "aniso8601"
aniso8601==8.0.0

 

728x90
반응형

댓글


loading