J'essaie d'installer HPCC
sur une machine RHEL. J'ai un fichier .rpm
et pour installer ce rpm, j'utilise la commande suivante:
Sudo rpm -Uvh hpccsystems-platform_community-4.0.0-9.el6.x86_64.rpm
Je reçois l'erreur suivante:
error: Failed dependencies:
boost-regex is needed by hpccsystems-platform-community-4.0.09.x86_64
expect is needed by hpccsystems-platform-community-4.0.09.x86_64
gcc-c++ is needed by hpccsystems-platform-community-4.0.09.x86_64
libapr-1.so.0()(64bit) is needed by hpccsystems-platform-community-4.0.09.x86_64
libaprutil-1.so.0()(64bit) is needed by hpccsystems-platform-community-4.0.09.x86_64
libarchive is needed by hpccsystems-platform-community-4.0.09.x86_64
liblber-2.4.so.2()(64bit) is needed by hpccsystems-platform-community-4.0.09.x86_64
libldap_r-2.4.so.2()(64bit) is needed by hpccsystems-platform-community-4.0.09.x86_64
libssl.so.10()(64bit) is needed by hpccsystems-platform-community-4.0.09.x86_64
4.0.09.x86_64
Veuillez noter que c'est la première fois que j'utilise RHEL . J'ai utilisé Ubuntu et dans Ubuntu, il était plus facile d'installer un logiciel à l'aide de la commande apt-get install
qui récupère le logiciel avec ses dépendances.
Je voudrais donc savoir comment installer ce rpm et installer automatiquement toutes ses dépendances?
Merci !!!
yum localinstall ...
Par exemple:
yum localinstall http://pkgs.repoforge.org/Subversion/subversion-devel-1.7.1-0.1.el6.rfx.i686.rpm
L'exemple ci-dessus installera automatiquement le rpm et ses dépendances.
vous pouvez créer un référentiel local yum puis exécuter la commande
yum install hpccsystems-platform_community-4.0.0-9.el6.x86_64.rpm
ou recherchez le référentiel en ligne où ce paquet est disponible, puis mettez l'URL dans baseurl dans le fichier .repo.
Vous pouvez activer le référentiel EPEL dans RHEL - téléchargez le package epel-release-6-8.noarch.rpm à l'aide de wget, puis installez-le à l'aide de rpm:
wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm - ivh epel-release-6-8.noarch.rpm
Ensuite, exécutez la commande suivante:
miam installer gcc-c ++ gcc make bison flex binutils-devel openldap-devel libicu-devel libxslt-devel libarchive-devel boost-devel openssl-devel apr-devel apr-util-devel
Enfin, installez le paquet hpccsystems-platform:
rpm -Uvh hpccsystems-platform_community-4.0.0-9.el6.x86_64.rpm