You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you are compiling the SRT package on Raspbian, the make command doesn't really put the files into the /usr/local/bin directory, because you need sudo access to it, so you need to either execute after make, sudo make install or just copy/symlink the srt-live-transmit, srt-file-transfer, stransmit and srt-ffplay manually to /usr/local/bin/. It is really not a big issue, but I was thinking that you can update your documentation, it might be useful for other ppl running into the same problem.
The text was updated successfully, but these errors were encountered:
Looks weird. This what you described is true for every Linux system everywhere.
If you want to do a user preinstallation, use the --prefix option in configure (turns into -DCMAKE_INSTALL_PREFIX in cmake call). By default this prefix is /usr/local, which is a generally known default for both autotools and cmake.
When you are compiling the SRT package on Raspbian, the
make
command doesn't really put the files into the/usr/local/bin
directory, because you needsudo
access to it, so you need to either execute aftermake
,sudo make install
or just copy/symlink thesrt-live-transmit
,srt-file-transfer
,stransmit
andsrt-ffplay
manually to/usr/local/bin/
. It is really not a big issue, but I was thinking that you can update your documentation, it might be useful for other ppl running into the same problem.The text was updated successfully, but these errors were encountered: