目前,我的机器上安装了TypeScript 1.0.3.0版本。 我想把它更新到最新的一个,即2.0。

如何用npm做到这一点?


当前回答

只需使用命令# npm update -g typescript 要更新所有已安装的全局模块,使用# npm update -g

其他回答

使用命令where in提示符查找当前可执行文件路径

C:\> where tsc
C:\Users\user\AppData\Roaming\npm\tsc
C:\Users\user\AppData\Roaming\npm\tsc.cmd

如果你在Windows上安装了Visual Studio,你的PATH中可能有一些指向旧版本的TypeScript。我发现从我的PATH中删除文件夹“C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\”(或删除/重命名此文件夹)将允许最新的npm全局安装的tsc的TypeScript版本工作。

试试npm install -g typescript@latest。你也可以用npm update代替install,不需要使用latest修饰符。

我对这个错误的解决方案是用下面的命令更新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