mac下sublimetext2的python配置

來源:互聯網
上載者:User

標籤:

一開始想使用wingide進行python的開發學習,但是wingide需要收費。於是網上搜了下wingide的破解方法,通過反編譯python的方法進行破解,結果mac下最新版的wingide破解失敗,只好另想辦法。

之前在學html的時候就看到sublimetext,但後來直接使用了mac的texteditor,就沒考慮。這兩天直接搜了下sublime,發現口碑很好,於是來嘗試下。文中很多地方參考了別人的連結,基本已一一引用。

http://www.sublimetext.com/  下載sublimetext2,不需付費。

1、package control安裝:   https://packagecontrol.io/installation 在其官網尋找安裝命令代碼,2和3的命令不完全一樣。開啟sublimetext2,通過快速鍵ctrl+`開啟控制台,黏貼2的命令代碼,enter完成安裝。import urllib2,os,hashlib; h = ‘eb2297e1a458f27d836c04bb0cbaf282’ + ‘d0e7a3098092775ccb37ca9d6b2e4b7d‘; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( ‘http://packagecontrol.io/‘ + pf.replace(‘ ‘, ‘%20‘)).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), ‘wb‘ ).write(by) if dh == h else None; print(‘Error validating download (got %s instead of %s), please try manual install‘ % (dh, h) if dh != h else ‘Please restart Sublime Text to finish installation‘)安裝完成後需關閉sublimetext,然後重新開啟(一定要重啟!!),查看preferences,如果出現package settings則安裝成功。2、安裝pylint。參考連結:http://www.cnblogs.com/game-testing/p/4344347.html    a、安裝pip,目的是為安裝pylint:sudo easy_install pip    b、安裝pylint,在終端中:sudo pip install pylint3、安裝pylinter   a、在sublime中,使用快速鍵ctrl+shift+p,輸入框中輸入install package,選中後斷行符號。   b、在新輸入框中輸入pylinter,斷行符號   c、安裝完成後,進行設定        開啟配置文檔,配置內容可參考連結  http://www.open-open.com/lib/view/open1369960978459.html文字顏色大小配置可參考連結http://www.cnblogs.com/dolphin0520/archive/2013/04/29/3046237.html快速鍵command+B可以運行python程式,記住在mac中建立的檔案儲存時需要添加尾碼名.py,否則建立的檔案是預設的plaintext格式(純文字)。

mac下sublimetext2的python配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.