1 ---
2 title: Downloading and installing packages globally
3 redirect_from:
4 - /getting-started/installing-npm-packages-globally
5 ---
6
7 <Note>
8
9 **Tip:** If you are using npm 5.2 or higher, we recommend using `npx` to run packages globally.
10
11 </Note>
12
13 [Installing][cli-install] a package globally allows you to use the code in the package as a set of tools on your local computer.
14
15 To download and install packages globally, on the command line, run the following command:
16
17 ```
18 npm install -g <package_name>
19 ```
20
21 If you get an EACCES permissions error, you may need to reinstall npm with a version manager or manually change npm's default directory. For more information, see "[Resolving EACCES permissions errors when installing packages globally][perm-errors]".
22
23 [cli-install]: /cli/install
24 [perm-errors]: resolving-eacces-permissions-errors-when-installing-packages-globally