Sachin Kumar
Sachin Kumar

Reputation: 31

how to install packages in sublime text editor 3?

I have installed package control in sublime text editor 3 build 3114. When I try to install new packages/plugins they not installed. Nothing shows any message.Please tell me how to install packages/plugins?

Upvotes: 2

Views: 13639

Answers (2)

Prakash Bhakat
Prakash Bhakat

Reputation: 1

On Linux (Ubuntu 14.04) you can do this in your home directory. $ cd .config/sublime-text-3/Packages clone git repo for the package like this ex: (git clone https://github.com/braver/TypeScriptSyntax.git) $ git clone package repo url that's it then close your sublime and restart sublime.

now if you do ctrl+shift+p then type typesript you should able to see the package and use to set the syntax.

Upvotes: 0

Lilian Rouzaire
Lilian Rouzaire

Reputation: 91

To install a package in ST2 and ST3, you first need to correctly install the correct version of Package Control (there is one version for ST2 and another one for ST3, see the Package Control installation page).

Once you've successfully completed the instalation (you can detect any error message in the status bar), you can start managing package via the Command Palette (Ctrl + Shift + P on Windows, then type Install package, then chose any package and press Enter). A confirmation message should appear in the status bar.

If you follow each of these steps, everything should work properly. Where are you stuck ?

Upvotes: 7

Related Questions