데비안:존재하는 것으로 알려진 opencv 패키지를 찾을 수 없습니다

데비안:존재하는 것으로 알려진 opencv 패키지를 찾을 수 없습니다

저는 BeagleBone에서 Debian을 실행하고 있습니다.

root@beaglebone:~# cat /etc/*-release
PRETTY_NAME="Debian GNU/Linux 7 (wheezy)"
NAME="Debian GNU/Linux"
VERSION_ID="7"
VERSION="7 (wheezy)"
ID=debian
ANSI_COLOR="1;31"
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support/"
BUG_REPORT_URL="http://bugs.debian.org/"

uname -a
Linux beaglebone 3.8.13-bone71.1 #1 SMP Wed May 20 20:13:27 PDT 2015 armv7l GNU/Linux

설치하려고 하는데오픈 컴퓨터 비전천명 저장소에서. 다음 오류가 발생합니다.

sudo apt-get install opencv
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package opencv

위에서 opencv 하이퍼링크를 제공했으므로 표준 wheezy 저장소에서 패키지를 사용할 수 있다고 가정합니다. 내 source.list 파일은 다음과 같습니다.

deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free 
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free

deb http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

deb http://ftp.debian.org/debian wheezy-backports main contrib non-free
deb-src http://ftp.debian.org/debian wheezy-backports main contrib non-free

#Kernel source (repos.rcn-ee.net) : https://github.com/RobertCNelson/linux-stable-rcn-ee
#
#git clone https://github.com/RobertCNelson/linux-stable-rcn-ee
#cd ./linux-stable-rcn-ee
#git checkout `uname -r` -b tmp
# deb [arch=armhf] http://repos.rcn-ee.net/debian/ wheezy main deb-src [arch=armhf] http://repos.rcn-ee.net/debian/ wheezy main

몇 가지 유사한 질문을 검토했지만 답변이 도움이 되지 않는 것으로 나타났습니다. 또한 apt-get을 성공적으로 업데이트했습니다 sudo apt-get update.

누구든지 (1) apt-get을 사용하여 opencv를 다운로드할 수 있는지 여부와 (2) 이 문제를 완화하는 방법에 대해 통찰력을 갖고 있다면 매우 감사하겠습니다. 감사해요!

답변1

그 이유는 패키지가 "opencv"라고 불리지 않을 가능성이 높기 때문입니다. 먼저 "apt-cache 검색 opencv"를 시도해 보세요. 가능한 패키지 목록을 제공합니다.

답변2

패키지 홈페이지를 확인해주세요. https://packages.debian.org/source/wheezy/opencv

바이너리 패키지가 아닌 소스 패키지입니다. 웹사이트에 나열된 이러한 소스 패키지에서 다수의 바이너리 패키지가 빌드됩니다. 하지만 "opencv"라는 패키지는 없습니다.

opencv를 설치하려면 "opencv" 패키지가 아닌 이러한 바이너리 패키지 중 일부 또는 전체를 설치해야 합니다.

관련 정보