我在Windows10上安装了“node”和“npm”。我使用以下命令检查安装,一切正常。
c:>node -v
v16.17.0
c:>npm -v
8.15.0
当我试图在“IntelliJ”终端中运行以下命令时,我得到一个错误。
PS D:Cypress> npm init
Program 'npm.cmd' failed to run: Access is deniedAt line:1 char:1
+ npm init
+ ~~~~~~~~.
At line:1 char:1
+ npm init
+ ~~~~~~~~
+ CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
+ FullyQualifiedErrorId : NativeCommandFailed
我怎么才能解决它呢?
1条答案
按热度按时间ioekq8ef1#
多亏了@lena,我在“IntelliJ”和“VSCode”中创建了“Command Prompt”类型的新终端,它们都能工作。防火墙似乎阻止了PowrShell,因此将终端类型从“PowerShell”更改为“Command Prompt”有效。