web-dev-qa-db-fra.com

Python 2.7 d'installation de Dlib

Ancien grunt marin ici! Nouveau sur Python et le codage. Essayer d'installer DLIB pour python 2.7. J'exécute la commande pip install dlib et continue à recevoir ce message d'erreur:

Collecting dlib
  Using cached dlib-19.1.0.tar.gz 
Building wheels for collected packages: dlib
  Running setup.py bdist_wheel for dlib ... error
Complete output from command c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\pickfl~1\\appdata\\local\\temp\\pip-build-4qhao2\\dlib\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', \n');f.close();exec(compile(code, __file__, 'exec'))" 
bdist_wheel -d c:\users\pickfl~1\appdata\local\temp\tmpcvgy9jpip-wheel- --python-tag cp27:
  running bdist_wheel
  running build
  Detected Python architecture: 32bit
  Detected platform: win32
  Configuring cmake ...
  -- Building for: NMake Makefiles
  -- The C compiler identification is unknown
  -- The CXX compiler identification is unknown
  CMake Error in CMakeLists.txt:
    The CMAKE_C_COMPILER:
      cl
    is not a full path and was not found in the PATH.
    To use the NMake generator with Visual C++, cmake must be run from a Shell
    that can use the compiler cl from the command line.  This environment is
    unable to invoke the cl compiler.  To fix this problem, run cmake from the
    Visual Studio Command Prompt (vcvarsall.bat).
    Tell CMake where to find the compiler by setting either the environment
    variable "CC" or the CMake cache entry CMAKE_C_COMPILER to the full path to
    the compiler, or to the compiler name if it is in the PATH.
  CMake Error in CMakeLists.txt:
    The CMAKE_CXX_COMPILER:
      cl
    is not a full path and was not found in the PATH.
    To use the NMake generator with Visual C++, cmake must be run from a Shell
    that can use the compiler cl from the command line.  This environment is
    unable to invoke the cl compiler.  To fix this problem, run cmake from the
    Visual Studio Command Prompt (vcvarsall.bat).
    Tell CMake where to find the compiler by setting either the environment
    variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
    to the compiler, or to the compiler name if it is in the PATH.
  -- Configuring incomplete, errors occurred!
  See also "C:/Users/Pickflickr1/AppData/Local/Temp/pip-build-4qhao2/dlib/tools/python/build/CMakeFiles/CMakeOutput.log".
  See also "C:/Users/Pickflickr1/AppData/Local/Temp/pip-build-4qhao2/dlib/tools/python/build/CMakeFiles/CMakeError.log".
  error: cmake configuration failed!

  ----------------------------------------   Failed building wheel for dlib

Along with this:
 Command "c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\pickfl~1\\appdata\\local\\temp\\pip-build-4qhao2\\dlib\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install
--record c:\users\pickfl~1\appdata\local\temp\pip-l8pcsq-record\install-record.txt
--single-version-externally-managed --compile" failed with error code 1 in c:\users\pickfl~1\appdata\local\temp\pip-build-4qhao2\dlib\

Tout commentaire ou aide serait génial! Ancien jarhead, alors supporte-moi, merci.

3
ASN

Essaye ça: 

conda install -c menpo dlib=18.18
4
Elena Zherdeva

D'abord, vous devez avoir installé pip. Ensuite, vous pouvez télécharger la version 2.7 de python dlib à partir du site " https://pypi.python.org/pypi/dlib/18.17.100 " où vous obtiendrez la roue de dlib. Et utilisez ensuite la procédure normale telle que pip install 'path to dlib wheel'. 

Par ex. Si vous avez enregistré le fichier .whl dans le dossier de téléchargement, tapez ensuite installer pip C:\Users\XYZ\Downloads\dlib-18.17.100-cp27-none-win32.whl.

Cela fonctionnera sûrement. Quand j'ai essayé, je n'ai pas eu d'erreur et dlib a été installé avec succès.

À votre santé 

2
Nachiket

Tout d'abord, installez toutes les dépendances pour la bibliothèque dlib: ->

Sudo apt-get install python-dev python-pip

Sudo apt-get install build-essential cmake pkg-config

Sudo apt-get install libx11-dev libatlas-base-dev

Sudo apt-get install libgtk-3-dev libboost-python-dev

Puis exécuter 

pip install dlib

Profitez de la vision par ordinateur .....

“L'avenir de la recherche dépendra en grande partie des images. La technologie de la vision par ordinateur sera un gros problème » 

Ben Silbermann

1
Madhurish Gupta

Le paquet pip peut être cassé ou peut ne pas être mis à jour. Quoi qu’il en soit, téléchargez le fichier dlib_master à l’adresse: https://github.com/davisking/dlib.git

Après cela, il y a un guide facile pour l'installation en python. Allez dans le dossier contenant setup.py puis ouvrez un terminal ou autre et tapez Sudo python setup.py install.

0
Nikhil Pandey