# installs fnm (Fast Node Manager)/安装fnm
winget install Schniz.fnm
# 重新开启powershell
# !不确定是否需要此步骤!
$profile
# !不确定是否需要此步骤!按照上面的输出,创建缺失的文件夹
# 创建$profile文件:粘贴到powershell后,按回车
if (!(Test-Path -Path $PROFILE)) {
New-Item -ItemType File -Path $PROFILE -Force
}
# 更改配置文件
notepad $profile
# 在打开的notepad中,粘贴以下代码,并保存
fnm env --use-on-cd | Out-String | Invoke-Expression
# 重新用管理员身份开启powershell
# 让$profile可以被读取,更改权限
set-ExecutionPolicy RemoteSigned
# 重新开启powershell
# download and install Node.js/下载并安装 Node.js
fnm use --install-if-missing 20
# verifies the right Node.js version is in the environment/验证Node.js版本
node -v # should print `v20.15.0`
# verifies the right NPM version is in the environment/验证NPM版本
npm -v # should print `10.7.0`
# 完成
windows下安装fnm
zhangzhijun
2025-02-04 03:49:03
192次浏览
192个评论
fnm为Windows下node版本管理的工具,使用此工具可以方便的进行node版本的管理和切换,本文对Windows下安装fnm的步骤,进行简单介绍,供参考。
版权申明:
本博客所有文章除特别声明外均采用BY-NC-SA 4.0许可协议。依据BY-NC-SA 4.0许可协议,转载请附上原文出处链接及本声明。
原文链接: https://chahuawu.com/index.php/computer-technology/program/windows-anzhuang-fnm.html