hi ive installed camera streamer using
git clone GitHub - ayufan/camera-streamer: High-performance low-latency camera streamer for Raspberry PI's --recursive
apt-get -y install libavformat-dev libavutil-dev libavcodec-dev libcamera-dev liblivemedia-dev v4l-utils pkg-config xxd build-essential cmake libssl-dev
cd camera-streamer/
make
sudo make install
please can someone tell me how to remove it . ive tried sudo make uninstall, with no luck
thanks
martin
I wonder if sudo apt remove camera-streamer
would work...
apt probably won't work unless it's an installed package.
I just looked into the make file and it looks to me like the installer just copies the file(s) into /usr/local/bin/
install: $(TARGET)
install $(TARGET) $(DESTDIR)/usr/local/bin/
Hey @montyfert
This is an old post but I figured I would drop this here in case anyone else is looking for an answer to this.
I believe that this should do the trick:
cd camera-streamer/
sudo make uninstall
1 Like