Question

I tried searching on Google but have not found any install instructions. Can someone help me out. I am using Ubuntu 12.04. Thanks!

Was it helpful?

Solution

Install the package manager, then type Command + Shift + P and type "Install", press Enter, type "Emmet" and press Enter again.

OTHER TIPS

A detailed article on How to Install Emmet In Sublime Text 3 and a video Tutorial on same

Open Sublime Text 3. Open console by pressing CTRL + ` or going to View > Show Console. Paste the following code and press Enter.

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

*Wait for a minute and restart your Sublime Text.*

Installing Emmet (Main Part)

  • After you have successfully installed Package Control, open Command Palette by pressing CTRL + SHIFT + P or going to Tools > Command Palette… Type install and click on Package Control: Install Package. After loading type Emmet in the search bar and click on Emmet. Wait for it to install (and yes this is also a step). Leave your system for 2-3 minutes as it will install some required repositories also like PyV8. Keep an eye on the Status bar (the light grey bar in the bottom of your editor which shows the Line and the Column number).

    After your status bar is clean and has nothing except the Line and Column number restart you Sublime.

and Look out..!!! Emmet is installed in your Sublime.

If you have installed the Sublime Text 3.
To enable Emmet follow these steps:

  1. Open the Sublime Text 3
  2. Go to Tool-> Command Palette..
  3. Select Install Package by searching "install".
  4. Again new window opens type "Emmet" and select first one.
  5. That's it new Zen coding( Emmet ) is enable in your Sublime Text 3.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top