web-dev-qa-db-ja.com

Dlibのインストールpython 2.7

ここで元海兵隊員! 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\

フィードバックやヘルプがあれば素晴らしいです!元ジャーヘッドなので、我慢してください、ありがとう。

3
ASN

これを試して:

conda install -c menpo dlib=18.18
4
Elena Zherdeva

まず、pipをインストールする必要があります。次に、dlib python 2.7バージョンを " https://pypi.python.org/pypi/dlib/18.17.1 " Webサイトからダウンロードできます。そして、pip install'path to dlibwheel 'のような通常の手順を使用します。

例: .whlファイルをダウンロードフォルダーに保存した場合は、pip install C:\ Users\XYZ\Downloads\dlib-18.17.100-cp27-none-win32.whlと入力します。

これは確かに機能します。試したところ、エラーは発生せず、dlibが正常にインストールされました。

乾杯

2
Nachiket

まず、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

コンピュータビジョンをお楽しみください.....

「検索の将来の多くは写真に関するものになるでしょう。コンピュータビジョン技術は大きな問題になるでしょう。」

ベンシルバーマン

1
Madhurish Gupta

Pipパッケージが壊れているか、更新されていない可能性があります。とにかく、dlib_masterを: https://github.com/davisking/dlib.git からダウンロードします。

その後、Pythonでインストールするための簡単なガイドがあります。 setup.pyを含むフォルダーに移動し、ターミナルなどを開いて、Sudo python setup.pyinstall」と入力します。

0
PanNik