Is there a specific forc sub-command that isn’t working or is forc not found at all in your terminal?
An alternative way to install forc is to use cargo install forc. The caveat of installing via cargo is that it is has to compile from scratch and you’ll have to ensure the version you’ve installed is compatible with the testnet you’re targeting.
It’s worth double checking if you have forc installed into your local ~/.fuelup/bin directory. If so, then you should also double check that the fuelup directory is added to your PATH environment variable.
That output looks to me like the forc download didn’t succeed
Could you:
do ls ~/.fuelup/store and see what output you get?
retry the installation step again and post the full output?
If all else fails, we could also manually download the binaries from the GitHub release itself, but that would involve some manual steps. Could you see of 1) and 2) works for you first?
OK, from that output it seems like the binaries were indeed installed to ~/.fuelup/store/forc-0.35.5 - could you ls that and see if you find forc there?
Since it’s there, I’m assuming the binaries were properly installed - try linking fuelup to forc by doing ln -s ~/.fuelup/bin/fuelup ~/.fuelup/bin/forc, and try executing forc again.