I think it works if I run their bash script they give and then manually give it the location I want that doesn’t require sudo, but when I try to echo the location that doesn’t need sudo it doesn’t work. Why?
Interactive (works):
apt-get update && apt-get install -y lsb-release && apt-get clean all && apt-get install -y curl
mkdir -p ~/.local/
bash -c "sh <(curl -fsSL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh)"
# I manually typed the local were I do have permissions:
~/.local/
fails non interactive:
# idk if this one works
echo "~/.local/" | bash -c "sh <(curl -fsSL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh)"
I’m a little confused. Typically these days, I download an opam binary, stick it in a directory, put that directory on my path, and go opam init and off we go to the races. Typically I also set an environment (OPAMROOT IIRC, been a while) so that my opam root is not my homedir/.opam, but that’s a nuance.
Why does one need to invoke apt at all? Other than for installing stuff like bbwrap, I mean ?
I do the same as you: (1) download the opam binary for my system from Releases · ocaml/opam · GitHub , (2) put that somewhere in my PATH where I have permission to do so, and (3) then use it to compile and install a switch for my chosen compiler (having the default ~/.opam as the local opam directory for this works fine for me). I am somewhat bemused by the difficulties reported here and on stackoverflow using specialized installers.