precisa instalar pacotes no CentOS 7

0

Existem bibliotecas e pacotes para o Ubuntu que possuem este comando:

sudo apt-get install libopencv-dev libtesseract-dev git cmake build-essential libleptonica-dev

sudo apt-get install liblog4cplus-dev libcurl3-dev
sudo apt-get install beanstalkd
git clone https://github.com/openalpr/openalpr.git
cd openalpr/src
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_SYSCONFDIR:PATH=/etc ..
make
wget http://plates.openalpr.com/h786poj.jpg -O lp.jpg alpr lp.jpg

Eu tentei substituir apt-get por yum , mas esta mensagem aparece: No package available .

    
por Loay Armoush 30.03.2016 / 18:57

1 resposta

2

Diferentes distribuições não possuem os mesmos nomes de pacotes. Felizmente, a maioria dos gerenciadores de pacotes tem uma função de "pesquisa" para ajudar você encontra pacotes mesmo que não saiba o nome exato. Para o Ubuntu, isso é apt-cache search . Para o CentOS 7, isso é yum search . Para exemplo:

$ yum search log4c
============================== N/S matched: log4c ==============================
log4c-devel.x86_64 : Header files, libraries and development documentation for
                   : log4c
log4cplus-devel.x86_64 : Development files for log4cplus C++ logging framework
log4cpp-devel.x86_64 : Header files, libraries and development man pages
                     : log4cpp
log4cpp-doc.x86_64 : Development documentation for log4cpp
mingw32-log4c.noarch : MinGW compiled log4c library for the Win32 target
mingw64-log4c.noarch : MinGW compiled log4c library for the Win64 target
log4c.x86_64 : Library for logging application messages
log4cplus.x86_64 : Logging Framework for C++
log4cpp.x86_64 : C++ logging library
log4cxx.i686 : A port to C++ of the Log4j project
log4cxx.x86_64 : A port to C++ of the Log4j project
log4cxx-devel.i686 : Header files for Log4xcc - a port to C++ of the Log4j
                   : project
log4cxx-devel.x86_64 : Header files for Log4xcc - a port to C++ of the Log4j
                     : project

O pacote log4c-devel é provavelmente o que você deseja. Da mesma forma, yum search tesseract me mostra um pacote tesseract-devel .

    
por 30.03.2016 / 19:31