This message was deleted.
# general
s
This message was deleted.
d
Does re-running the install work?
I've just verified it downloads + installs from here
f
not working
d
what's the output of
tar --version
?
as well as
gzip --version
which OS/distro?
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
perfect Anthony, great thanks for your help !!1