https://pulumi.com logo
#general
Title
# general
f

freezing-pencil-30359

11/15/2023, 5:27 PM
Copy code
=== Installing Pulumi v3.94.0 ===
+ Downloading <https://github.com/pulumi/pulumi/releases/download/v3.94.0/pulumi-v3.94.0-linux-x64.tar.gz>...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  147M  100  147M    0     0  1098k      0  0:02:17  0:02:17 --:--:--  805k
+ Extracting to /home/carlosr/.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.
If you need help, please join us on <https://slack.pulumi.com/>
d

dry-keyboard-94795

11/15/2023, 5:40 PM
Does re-running the install work?
I've just verified it downloads + installs from here
f

freezing-pencil-30359

11/15/2023, 5:48 PM
not working
d

dry-keyboard-94795

11/15/2023, 5:49 PM
what's the output of
tar --version
?
as well as
gzip --version
f

freezing-pencil-30359

11/15/2023, 5:52 PM
image.png
image.png
d

dry-keyboard-94795

11/15/2023, 6:01 PM
which OS/distro?
f

freezing-pencil-30359

11/15/2023, 6:19 PM
image.png
d

dry-keyboard-94795

11/15/2023, 6:32 PM
I can't replicate in my ubuntu/debian containers. can you download the file, and get its checksum?
Copy code
wget <https://github.com/pulumi/pulumi/releases/download/v3.94.0/pulumi-v3.94.0-linux-x64.tar.gz>
sha256sum pulumi-v3.94.0-linux-x64.tar.gz
You should end up with this output:
Copy code
237a48743f12d757c5e2169098ebd1646cf9c26735e6ac6f692c3f8e7b3fc9fa  pulumi-v3.94.0-linux-x64.tar.gz
There's a related issue that seems to be caused by
curl
being installed via
snap
. https://github.com/pulumi/pulumi/issues/9660 Could you try this:
Copy code
sudo snap remove curl
sudo apt install curl
Unfortunately, I can't verify this locally as it requires a full install of ubuntu, and I'm not going through the hassle of getting systemd running in docker again :)
f

freezing-pencil-30359

11/15/2023, 6:48 PM
perfect Anthony, great thanks for your help !!1