The command shared on the installation page
curl -fsSL https://nebi.nebari.dev/install.sh | sh -s --desktop
creates the following error
sh: --: invalid option
Usage: sh [GNU long option] [option] ...
sh [GNU long option] [option] script-file ...
GNU long options:
--debug
--debugger
...
The fix is
curl -fsSL https://nebi.nebari.dev/install.sh | sh -s -- --desktop
The command shared on the installation page
curl -fsSL https://nebi.nebari.dev/install.sh | sh -s --desktopcreates the following error
The fix is
curl -fsSL https://nebi.nebari.dev/install.sh | sh -s -- --desktop