I tried to install Pulumi but I got the error: ``...
# getting-started
s
I tried to install Pulumi but I got the error:
Copy code
curl -fsSL <https://get.pulumi.com> | sh -s -- --version dev
=== Installing Pulumi v3.117.1-alpha.xee831fc ===
+ Downloading <https://get.pulumi.com/releases/sdk/pulumi-v3.117.1-alpha.xee831fc-linux-x64.tar.gz>...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  151M  100  151M    0     0  5032k      0  0:00:30  0:00:30 --:--:-- 5202k
+ Extracting to /home/shubham/.pulumi/bin

gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now

We're sorry, but it looks like something might have gone wrong during installation.
d
Are you using Ubuntu?
s
yes
d
This might be the known issue with using curl from the snap store, which is unable to write/share temporary files. Can you try this please: https://github.com/pulumi/pulumi/issues/9660#issuecomment-1279162492
Copy code
sudo snap remove curl
sudo apt install curl
s
Ok.
Done, Thanks.
m
Damn snaps
d
Thankfully it's resolved in 22.04
s
👍