[4] Ptyhon 관련 정보

Python 2014. 6. 14. 10:48 |

# 파이썬 관련 패키지 색인 

http://pypi.python.org/pypi


# 파이썬 패키지 쉽게 설치하기   (setuptools)

https://pypi.python.org/pypi/setuptools

//WINDOW

c:\ >> cd \python33

c:\ >> python ez_setup.py

//UBUNTU

sudo apt-get install python3-setuptools

sudo easy_install3 --version


** pip도 있다. setuptools 보다 더 편리하다는데 사용안해봐서 모르겠다. 

#파이썬 이미지 라이브러리 

easy_install Pillow 

//병아리 모양 변경하기

>>import Image

>>chick = Image.open("chick.jpg")

>>chick

>>chick.mode     // 'RGB'

>>chick.size       //(315,429)

>>chick.save('병아리.bmp')

>>s = chick.resize((105,200))


Posted by 마일로
: