antfu/ni 在 Windows 下的安装

问题

全局安装 ni 之后,第一次使用会有这个问题

在这里插入图片描述

解决

powershell 中输入

Remove-Item Alias:ni -Force -ErrorAction Ignore

之后再次运行 ni

在这里插入图片描述

Windows 11 下的 Powershell 环境配置

可以参考 https://github.com/antfu-collective/ni?tab=readme-ov-file#how 下的解决办法

先输入 $profile 获取文件位置,如果没有可以手动创建文件夹以及文件

在这里插入图片描述
然后把官网上的代码复制进去保存

在这里插入图片描述

if (-not (Test-Path $profile)) {
  New-Item -ItemType File -Path (Split-Path $profile) -Force -Name (Split-Path $profile -Leaf)
}

$profileEntry = 'Remove-Item Alias:ni -Force -ErrorAction Ignore'
$profileContent = Get-Content $profile
if ($profileContent -notcontains $profileEntry) {
  ("`n" + $profileEntry) | Out-File $profile -Append -Force -Encoding UTF8
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值