'IT/Python'에 해당되는 글 2건

Python All Package Update

IT/Python 2020. 11. 29. 17:29

Python All Package Update

 

$ pip freeze > requirements.txt

 

open the text file, replace the == with >= , and execute

 

$ pip install -r requirements.txt --upgrade

 

If you have a problem with a certain package stalling the upgrade (numpy sometimes), just go to the directory ($), comment out the name (add a # before it) and run the upgrade again. You can later uncomment that section back. This is also great for copying python global environments.

 


Another way:

 

I also like the pip-review method:

 

py2

$ pip install pip-review

 

$ pip-review --local --interactive

 

py3

$ pip3 install pip-review

 

$ pip-review --local --interactive

반응형

'IT > Python' 카테고리의 다른 글

아나콘다 배포 패키지 설치 및 아나콘다 관리하기  (0) 2016.12.06
블로그 이미지

조이풀 라이프

Lift is short, enjoy the life

,

파이썬을 사용하기 위해서 윈도우용 파이썬 설치 배포 패키지인 아나콘다를 설치하는 방법을 설명한다.

아나콘다 설치 배포본에는 Jupter Notebook, IPython, qtconsole, spyder 등이 포함되어 있다.

 

1.설치환경

- 윈도우10 64bit

 

 

2. 아나콘다 패키지 다운로드

https://www.continuum.io/downloads

아래의 다운로드 화면에서 Python 3.5 version, 64-BIT Installer를 다운로드 한다.

 

   

3. 아나콘다 설치하기

다운받은 Anaconda3-4.2.0-Windows-x86_64.exe 파일을 클릭하여 PC에 설치한다. 설치가 완료되면 "C:\Program Files\Anaconda3" 경로에 아래와 배포본이 설치된다.

 

4. 아나콘다 관리하기

아나콘다를 관리하기 위해 아나콘다 메뉴에서 Anaconda Prompt를 관리자 권한으로 실행을 한다.

 

버전 확인

conda update --help

 

아나콘다 업데이트

conda update conda

 

 

설치된 패키지 내역 보기

conda list 

To list all of your packages installed into a non-active environment named snowflakes:

conda list -n snowflakes 

 

설치된 패키지 찾기

To see if a specific package is available for conda to install:

conda search beautiful-soup 

This displays the package name, so we know it is available.

 

패키지 설치

Install a package such as “Beautiful Soup” into the current environment, using conda install as follows:

conda install --name bunnies beautiful-soup 

conda install python=3.5

conda install -c menpo opencv3=3.1.0

 

자세한 Anaconda 명령어 레퍼런스는 아래의 사이트를 참고하기 바랍니다.

http://conda.pydata.org/docs/using/using.html#introduction

 

 

 

 

반응형

'IT > Python' 카테고리의 다른 글

Python All Package Update  (0) 2020.11.29
블로그 이미지

조이풀 라이프

Lift is short, enjoy the life

,