CenTdemeern1
CenTdemeern12w ago

How can I install Deno without user interaction?

I have an env setup script that I want to install Deno from. How can I install Deno on Debian without user interaction?
6 Replies
CenTdemeern1
CenTdemeern1OP2w ago
I just realized I could probably add it to the path manually after specifying --yes I can’t seem to add the solved tag.
Bhuwan
Bhuwan2w ago
curl -fsSL https://deno.land/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
CenTdemeern1
CenTdemeern1OP2w ago
this doesn't actually work, since that requires user interaction the actual answer is
curl -fsSL https://deno.land/install.sh | sh -s -- -y
curl -fsSL https://deno.land/install.sh | sh -s -- -y
I wasn't able to edit my post tags on mobile though so I couldn't add the solved tag
Bhuwan
Bhuwan2w ago
So meaning you wanted to avoid hurting the Y in the keyboard
CenTdemeern1
CenTdemeern1OP2w ago
This is not a sentence that I can make sense of
Bhuwan
Bhuwan2w ago
Anyway, its good that your issue is solved