INSTALL.md: do not specify sudo for installation

Depending on the installation prefix and destination dreictory,
`sudo` may be unnecessary, so remove it from the command,
but mention that it may be needed.
This commit is contained in:
Barnabás Pőcze 2022-06-15 15:42:03 +02:00 committed by Wim Taymans
parent 78d5315c76
commit c757ed6d41

View file

@ -95,10 +95,12 @@ systemctl --user stop pipewire.service \
PipeWire comes with quite a bit of libraries and tools, run: PipeWire comes with quite a bit of libraries and tools, run:
``` ```
sudo meson install -C builddir meson install -C builddir
``` ```
to install everything onto the system into the specified prefix. to install everything onto the system into the specified prefix.
Depending on the configured installation prefix, the above command
may need to be run with elevated privileges (e.g. with `sudo`).
Some additional steps will have to be performed to integrate Some additional steps will have to be performed to integrate
with the distribution as shown below. with the distribution as shown below.
@ -223,5 +225,8 @@ sockets with the `-a` option. See `pipewire-pulse -h` for more info.
To uninstall, run: To uninstall, run:
``` ```
sudo ninja -C builddir uninstall ninja -C builddir uninstall
``` ```
Depending on the configured installation prefix, the above command
may need to be run with elevated privileges (e.g. with `sudo`).