Dlib安装python 2.7

时间:2017-02-09 05:46:32

标签: python-2.7 dlib

前海洋咕噜咕噜!新的python和编码。尝试为python 2.7安装DLIB。我运行命令pip install dlib并不断收到此错误消息:

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\

任何反馈或帮助都会很棒!以前的jarhead跟我一起,谢谢。

4 个答案:

答案 0 :(得分:4)

试试这个:

conda install -c menpo dlib=18.18

答案 1 :(得分:2)

首先你需要安装pip。然后你可以从“https://pypi.python.org/pypi/dlib/18.17.100”网站下载dlib python 2.7版本,你将获得dlib的轮子。然后使用正常的程序,如pip install'path to dlib wheel'。

对于前。如果您已将.whl文件保存到downloads文件夹,则输入pip install C:\ Users \ XYZ \ Downloads \ dlib-18.17.100-cp27-none-win32.whl。

这肯定有用。当我尝试时,我没有收到任何错误,并且dlib已成功安装。

干杯

答案 2 :(得分:2)

首先安装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

然后执行

pip install dlib

享受计算机视觉.....

“搜索的许多未来都将与图片有关。计算机视觉技术将是一件大事”

本·西尔伯曼

答案 3 :(得分:0)

pip包可能已损坏或可能未更新。无论如何,从https://github.com/davisking/dlib.git

下载dlib_master

之后有一个简单的python安装指南。转到包含 setup.py 的文件夹,然后打开终端或其他内容并输入 sudo python setup.py install。