web-dev-qa-db-fra.com

RuntimeError: <chemin> Échec de l'exécution, veuillez pointer llvm_config sur le chemin de vue de LLVM-CONFIG.

Essayer d'installer llvmlite via pip en exécutant

pip install llvmlite

me donne constamment cette erreur:

    RuntimeError: <path> failed executing, please point LLVM_CONFIG to the path for llvm-config
    error: command '/Users/sfalk/miniconda3/envs/itranslate-asr-service/bin/python' failed with exit status 1
    ----------------------------------------

Maintenant, je suis sur Python 3.5

$ python --version
Python 3.5.6 :: Anaconda, Inc.

Et juste courir pip install llvmlite me donnera ceci:

 RuntimeError: Building llvmlite requires LLVM 7.0.x, 7.1.x or 8.0.x, got '10.0.0'. Be sure to set LLVM_CONFIG to the right executable path.

J'ai installé LLVM 8 via brew

brew install llvm@8

Réglage LLVM_CONFIG Pour ni ne fonctionne pas.

  • /usr/local/opt/llvm@8/bin (avez-je supposé llvm-config être), ou
  • /usr/local/opt/llvm@8/Toolchains/LLVM8.0.1.xctoolchain/usr/bin (où j'ai trouvé réellement llvm-config être)

Et je continue à obtenir une version de:

RuntimeError: /usr/local/opt/llvm@8/Toolchains/LLVM8.0.1.xctoolchain/usr/bin failed executing, please point LLVM_CONFIG to the path for llvm-config

Qu'est-ce que j'oublie ici?

6
Stefan Falk

Je faisais face au même problème que cela n'a pas fonctionné

Vous devrez installer le package LLVM requis à l'aide de la configuration exécutable.

Sudo apt install installer llvm -[~ # ~ ~] x [~ # ~]

puis

Sudo Pip3 Installez LLVMLITE CD/USR/BIN SUDO LN -S LLVM-CONFIG - X llvm-config

n'a pas fonctionné pour moi .. Mais j'ai remarqué que nous avions la même erreur de sortie

RuntimeError: <path> failed executing, please point LLVM_CONFIG to the path for llvm-config

donc .. la logique a frappé .. Pourquoi ne pas pointer le llvm_config vers la bonne configuration LLVM

réparation simple

export LLVM_CONFIG=/usr/bin/llvm-config-10

1
Jeremy Lee