Reputation: 11
I am sitting in front of a completely clean windows 10 install – VS Code is installed but nothing else:
Upvotes: 1
Views: 3326
Reputation: 14077
There's a standalone script on pnpm installation guide.
curl -L https://unpkg.com/@pnpm/self-installer | node
Windows doesn't have curl, instead you can use Invoke-WebRequest
within PowerShell for that. So probably this should work:
Invoke-WebRequest -Uri https://unpkg.com/@pnpm/self-installer | node
Try downloading file instead and then executing it with node:
Invoke-WebRequest -Uri https://unpkg.com/@pnpm/self-installer -OutFile pnpm.js; node pnpm.js
Your second question is unclear.
Upvotes: 1