python知識點

來源:互聯網
上載者:User

1、在mac下,安裝支援PIL庫。

        1.1 下載安裝Combo Installer libpng & libjpeg: http://ethan.tira-thompson.com/Mac_OS_X_Ports.html

        1.2 sudo easy_install pil

        測試代碼:

!/usr/bin/env python  import Imageimport osimport os.pathimport syspath = sys.argv[1]small_path = (path[:-1] if path[-1]=='/' else path) +'_small'if not os.path.exists(small_path):    os.mkdir(small_path)for root, dirs, files in os.walk(path):    for f in files:        fp = os.path.join(root, f)        img = Image.open(fp)        w, h = img.size        img.resize((w/4, h/4)).save(os.path.join(small_path, f), "JPEG")        print fp

2. Mac下安裝MySQL驅動

參考:http://www.cnblogs.com/ken-zhang/archive/2011/05/14/2046211.html

a. sudo easy_install mysql-python

b. export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/

3. Mac安裝PyQt

    使用brew進行安裝

    brew install pyqt

    若importPyQt4失敗,在.bash_profile添加export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.