完美解決 sublime text 3 /2不能安裝 package control 的問題 手動安裝_經驗教程

來源:互聯網
上載者:User

原創部落格地址:https://lwxshow.com/post/1816.html

sublime text 可以說是與eclipse並說全世界目前最好的開發工具了。

很多時候,大家在網上搜尋sublimetext 3安裝package control,顯示的99%都是不能用的。這裡就不一一列舉了。總是一句話,都是浮雲。那麼如何搞定不能安裝package control這個問題咧。

下面,就為大家分享本人的經驗。

sublime text 最新安裝package control方式


菜單-----view---->show console


ctrl+~

複製如下代碼,粘貼到console框中

1.sublime text 3安裝指令碼 Code    View Print import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)

2.sublime text 2安裝指令碼 Code    View Print import urllib2,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; 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')

3.手動安裝的說。
不錯的話,就贊一個吧。
下載 Package Control.sublime-package
[file]
複製到你的安裝包目錄

好吧。有人說不知道安裝包目錄在哪裡。
單擊 Preferences > Browse Packages
就會開啟你的安裝包的目錄了。

Restart Sublime Text

相關文章

聯繫我們

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