目前,我的机器上安装了TypeScript 1.0.3.0版本。 我想把它更新到最新的一个,即2.0。
如何用npm做到这一点?
目前,我的机器上安装了TypeScript 1.0.3.0版本。 我想把它更新到最新的一个,即2.0。
如何用npm做到这一点?
当前回答
只需使用命令# npm update -g typescript 要更新所有已安装的全局模块,使用# npm update -g
其他回答
我对这个错误的解决方案是用下面的命令更新typescript版本:
npm install -g typescript@latest因为我使用的是Windows。 但是在Mac上,这也可以通过sudo npm install -g typescript@latest来实现
打开命令提示符(cmd.exe/git bash)
推荐:
npm install -g typescript@latest
or
yarn global add typescript@latest // if you use yarn package manager
这将安装最新的typescript版本,如果还没有安装, 否则它会将当前安装更新到最新版本。
然后验证安装了哪个版本:
tsc -v
如果你已经安装了typescript,你也可以使用下面的命令来更新到最新版本,但正如评论员所报告的,我确认下面的命令不会更新到最新版本(截至目前[17年2月10日])!
npm update -g typescript@latest
如果你的系统已经全局安装了typescript,你只需要更新typescript的版本。
确保首先检查你的typescript版本。
tsc -v
or
tsc
TSC命令提供了更多详细信息。
如果一切配置正确,没有问题。此时只需要升级typescript版本。
npm update -g typescript
试试npm install -g typescript@latest。你也可以用npm update代替install,不需要使用latest修饰符。
使用命令where in提示符查找当前可执行文件路径
C:\> where tsc
C:\Users\user\AppData\Roaming\npm\tsc
C:\Users\user\AppData\Roaming\npm\tsc.cmd