Skip to main content

Install Sublime Text 3 with Emmet in ubuntu 13.10


First the first , we have to download sublime text 3 deb package at www.sublimetext.com .

After finished , it will be in the Download Folder .and then , we should install it in terminal.

(1) Open Terminal ( Ctrl + Alt +t )
(2) In Terminal => " sudo dpkg -i sublime-text_build-3047_i386.deb"  | in this step , we can use tab after typed first word for sublimetext package like that " sub > tab " , it will fill automatically!

yethusoe@yethusoe-hz:~/Downloads$ sudo dpkg -i sublime-text_build-3047_i386.deb [sudo] password for yethusoe:
Selecting previously unselected package sublime-text.
(Reading database ... 185921 files and directories currently installed.)
Unpacking sublime-text (from sublime-text_build-3047_i386.deb) ...
Setting up sublime-text (3047) ...
Processing triggers for hicolor-icon-theme ...
Processing triggers for gnome-menus ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support ...
Now we can use sublime text 3 without Emmet.
So, let start to install Emmet,First we must install the package control tool.

(1) In Sublime Text , Press ( Ctrl+ ` ) to call the console input box. < ' is place beside of 1 > 
( OR ) In Sublime Text Global menu : View Tab => Show Console.
(2) we have to fill 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())

(3) and then , Restart the Sublime Text.
Now,we can use package control and install the Emmet.

First , Open the Sublime text and press " Ctrl + Shift + p "
(1) Type " Package Install " and Press " Enter "
please wait a few second , it is loading the package. if the input box appeared,  
(2) Type " Emmet " and press " Enter " 

It will install Emmet Automatically,Now We can use sublime text with Emmet.
first time use of Emmet take a time for a few minutes to download and install the PyV8(python) package. we can can the status at the foot bar of sublime.

Thanks you :)

Comments

Popular posts from this blog

Learning English Through Laughter : 3

Mr.Green went to Germany, because he had some work there.He came back last Monday, and his young wife met him at the airport. They walked to their car and passed a tall, pretty air-hostess. Mr. Green said to her , ' Goodbye, Miss Harris, ' and the air-hostess smiled and said, 'Good bye' too. Mrs. Green stopped and looked at the air-hostess .Then she said to her husband, 'How did you know her name?' 'That was easy,'answered Mr.Green. 'The names of the captain and all the screw were on a piece of paper in front of our seates.' 'What was the name of the captain?' Mrs. Green asked with a smile. Mr.Green launged and answered ,'I don't remember any of the other names.' 4/\/\@

Install Laravel installer in ubuntu

Terminal ဖြင့္ပီးေတာ့ ေအာက္က ကြန္မန္းထည့္ run ရပါတယ္။ composer global require "laravel/installer" ျပီးရင္ terminal ထဲမွာ laravel ဆိုပီး ရိုက္ၾကည့္ပါ။ေအာက္ကအတုိင္းေပၚရင္ေတာ့ အလုပ္လုပ္ပါျပီ။ တကယ္လုိ ့ laravel: command not found ဆိုပီးျပေနရင္ေတာ့ ေအာက္က Command ထပ္ရိုက္ထည့္ျပီး ျပန္စမ္းၾကည့္ပါ။ ဒါဆိုဆင္ေျပသြားမွာပါ။ export PATH="~/.composer/vendor/bin:$PATH"

Install node.js in ubuntu

ပ ထမဆံုး http://nodejs.org/ မွာ သြင္းမယ့္ ဖိုင္ကုိအရင္ေဒါင္းလိုက္ပါ။ ျပီးရင္  dependencie လိုအပ္တာေတြကုိ ေ အာက္က  ကြန္မန္းနဲ့ ႏွစ္ခုသြင္းပါ။ sudo apt-get install g++ curl libssl-dev apache2-utils sudo apt-get install git-core ျပီးရင္ေတာ့ ေအာက္က ကြန္မန္းနဲ့တဆင့္ျခင္းသြင္းရင္ ဆင္ေျပပါျပီ။ cd node { download ဆြဲထားတဲ့ဖိုင္ကုိ ျဖည္ျပီးေတာ့ အဲဒီဖိုင္ထဲဝင္ } ./configure make sudo make install ရမရစမ္းဖုိ့အတြက္က ေအာက္က tut ေလးစမ္းျပီးသိႏုိင္ပါတယ္။ ေအာက္က ကုတ္ေတြကုိ test.js ဆိုျပီးတခုခုေပးပီး တေနရာရာသိမ္းလုိက္ပါ။ var http = require ( 'http' ); http . createServer ( function ( req , res ) {   res . writeHead ( 200 , { 'Content-Type' : 'text/plain' });   res . end ( 'Hello Node.js\n' ); }). listen ( 8124 , "127.0.0.1" ); console . log ( 'Server running at http://127.0.0.1:8124/' ); သိမ္းျပီးရင္ Terminal ထဲကေန node test.js ဆိုျပီးေခၚရင္   Server running at http://127.0.0.1:8124/ ဆိုျပီးေပၚေ...