I cant install prompt-sync in visual studio

Viewed 25

Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved.

Try the new cross-platform PowerShell https://aka.ms/pscore6

PS C:\Users\ibcph> npm install prompt-sync

up to date, audited 215 packages in 3s

9 packages are looking for funding run npm fund for details

6 vulnerabilities (1 moderate, 4 high, 1 critical)

To address all issues (including breaking changes), run: npm audit fix --force

Run npm audit for details. PS C:\Users\ibcph>

1 Answers

It is already installed to your current working directory C:\Users\ibcph.

Are you trying to install it globally?

npm install -g prompt-sync
Related