I couldn't get the install script to find the latest binary so I went to follow the manually install it by looking over the install script to replicate what I could with the manually downloaded binary.
I'm using a Steam Deck and SteamOS uses a read only file system, making it impossible to move the binary to /usr/local/bin
As far as I know, even when you enable developer mode, the root file system will be reset with every major update to SteamOS. Only files in the user space, and probably a couple others I'm not aware of, are preserved.
To get around all this and get it working
Manually download the latest release and extract the bin
Move the bin to ~/.local/bin
Updated the PATH variable in ~/.bashrc
PATH="$PATH:$HOME/.local/bin"
I don't want to assert my workaround is the best way to deal with a read only file system.
For future users, possibly a "best practice manual installation" for read only file systems would be nice to have more readily available
I couldn't get the install script to find the latest binary so I went to follow the manually install it by looking over the install script to replicate what I could with the manually downloaded binary.
I'm using a Steam Deck and SteamOS uses a read only file system, making it impossible to move the binary to
/usr/local/bin
As far as I know, even when you enable developer mode, the root file system will be reset with every major update to SteamOS. Only files in the user space, and probably a couple others I'm not aware of, are preserved.
To get around all this and get it working
~/.local/bin
~/.bashrc
I don't want to assert my workaround is the best way to deal with a read only file system.
For future users, possibly a "best practice manual installation" for read only file systems would be nice to have more readily available