ros-drivers / video_stream_opencv

A package to open video streams and publish them in ROS using the opencv videocapture mechanism
224 stars 159 forks source link

Install with ROS #103

Closed paulinaacostac closed 3 years ago

paulinaacostac commented 3 years ago

Im trying to install it with ROS with the command sudo apt-get install ros-melodic-video-stream-opencv but I get error:

Failed to fetch http://packages.ros.org/ros/ubuntu/pool/main/r/ros-melodic-video-stream-opencv/ros-melodic-video-stream-opencv_1.1.6-1bionic.20210416.182907_arm64.deb Could not resolve 'packages.ros.org'

Im trying to use the command rosrun video_stream_opencv test_video_resource.py 0

Running the script with Python only works perfectly fine

awesomebytes commented 3 years ago

Either there is a problem with your DNS that can't resolve that URL, or the url itself is down (check it in the browser) or you may need to do sudo apt update and try again.

The package is hosted with the rest of the ROS packages, so we can't do anything from here. You could use the package from source, of course.

On Mon, May 17, 2021, 09:22 paulinaacostac @.***> wrote:

Im trying to install it with ROS with the command sudo apt-get install ros-melodic-video-stream-opencv but I get error:

Failed to fetch http://packages.ros.org/ros/ubuntu/pool/main/r/ros-melodic-video-stream-opencv/ros-melodic-video-stream-opencv_1.1.6-1bionic.20210416.182907_arm64.deb Could not resolve 'packages.ros.org'

Im trying to use the command rosrun video_stream_opencv test_video_resource.py 0

Running the script with Python only works perfectly fine

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ros-drivers/video_stream_opencv/issues/103, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANEK5FQAWT2BRHKMDG26PTTOBHUPANCNFSM447LXEEQ .

paulinaacostac commented 3 years ago

Thank you, it was indeed an internet issue. sudo apt-get install ros-melodic-video-stream-opencv was the command I used and worked.