Fly install script for linux not working

I’m trying to install fly on fedora but the install script is not working; it just times out.
I have installed it several times before, so I don’t know what the problem is.
This is the error: Failed to connect to fly.io port 443 after 131792 ms: Connection timed out.

It sounds like there’s a network issue somewhere between you and fly.io. Is this the command you ran?

curl -L https://fly.io/install.sh | sh

You may want to check that you can simply run:

curl -v https://fly.io/install.sh

If that’s successful, try downloading the install.sh and adding a set -x at the beginning so you can see where the script is getting hung up.

curl -v https://fly.io/install.sh This command shows that the connection to fly.io is successful and shows a bunch of other info.
So next I should try curl -L set-x https://fly.io/install.sh | sh ?

Sounds like you can connect to fly.io. Try this next:

  • Download https://fly.io/install.sh to your computer
  • Add set -x after the set -e line
  • Run chmod +x install.sh
  • Run the script: ./install.sh

That worked fine, thanks