MacBook安装Typescript教程

@MacBook安装typescript教程

MacBook安装Typescript教程

不同于windows上安装Typescript,在mac 上安装,有一定的迷惑性。
如果出现以下错误,如,

npm ERR! code EACCES
npm ERR! syscall mkdir
npm ERR! path /usr/local/lib/node_modules/typescript
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/typescript'
npm ERR!  [Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/typescript'] {
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'mkdir',
npm ERR!   path: '/usr/local/lib/node_modules/typescript'
npm ERR! }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

npm ERR! A complete log of this run can be found in:

或者输入tsc -v;出现:

zsh: command not found: tsc

这些原因都是,没有使用 sudo来提权。就可以按照下面的方式重新安装。

一、使用命令:sudo npm install -g typescript 进行安装;
请添加图片描述
输入命令后,MacBook会要求我们输入你的电脑密码,正常输入就好;

二、然后安装完成显示:
请添加图片描述
三、最后测试,输入命令;tsc -v; 显示版本号,就是安装成功了。如下图
请添加图片描述
注;错误提示
如果第一步安装命令没有加:sudo,
而是直接输入了npm install -g typescript;
会显示如下错误;

MacBook安装Typescript教程_第1张图片

你可能感兴趣的:(Macbook使用系列教程,macos,typescript)