Я попытался установить пакет opencv в pycharm, и он работал нормально, но когда я попытался установить пакет распознавания лиц, я получил следующие ошибки - PullRequest
0 голосов
/ 26 мая 2020
Collecting face-recognition
  Using cached face_recognition-1.3.0-py2.py3-none-any.whl (15 kB)
Collecting dlib>=19.7
  Using cached dlib-19.19.0.tar.gz (3.2 MB)
Requirement already satisfied: Click>=6.0 in c:\users\abi\pycharmprojects\project_demo\venv\lib\site-packages (from face-recognition) (7.1.2)
Requirement already satisfied: face-recognition-models>=0.3.0 in c:\users\abi\pycharmprojects\project_demo\venv\lib\site-packages (from face-recognition) (0.3.0)
Requirement already satisfied: Pillow in c:\users\abi\pycharmprojects\project_demo\venv\lib\site-packages (from face-recognition) (7.1.2)
Requirement already satisfied: numpy in c:\users\abi\pycharmprojects\project_demo\venv\lib\site-packages (from face-recognition) (1.18.4)
Building wheels for collected packages: dlib
  Building wheel for dlib (setup.py): started
  Building wheel for dlib (setup.py): finished with status 'error'
  Running setup.py clean for dlib
Failed to build dlib
Installing collected packages: dlib, face-recognition
    Running setup.py install for dlib: started
    Running setup.py install for dlib: finished with status 'error'

  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\abi\PycharmProjects\Project_demo\venv\Scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\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\abi\AppData\Local\Temp\pip-wheel-y9b5sp6f'
       cwd: C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\
  Complete output (80 lines):
  running bdist_wheel
  running build
  running build_py
  package init file 'dlib\__init__.py' not found (or not a regular file)
  warning: build_py: byte-compiling is disabled, skipping.

  running build_ext
  Building extension for Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:20:19) [MSC v.1925 32 bit (Intel)]
  Invoking CMake setup: 'cmake C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\tools\python -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\build\lib.win32-3.8 -DPYTHON_EXECUTABLE=C:\Users\abi\PycharmProjects\Project_demo\venv\Scripts\python.exe -DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\build\lib.win32-3.8'
  -- Building for: NMake Makefiles
  -- The C compiler identification is unknown
  -- The CXX compiler identification is unknown
  CMake Error at CMakeLists.txt:3 (project):
    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 at CMakeLists.txt:3 (project):
    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/abi/AppData/Local/Temp/pycharm-packaging/dlib/build/temp.win32-3.8/Release/CMakeFiles/CMakeOutput.log.
  See also "C:/Users/abi/AppData/Local/Temp/pycharm-packaging/dlib/build/temp.win32-3.8/Release/CMakeFiles/CMakeError.log".
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 223, in <module>
      setup(
    File "C:\Users\abi\PycharmProjects\Project_demo\venv\lib\site-packages\setuptools\__init__.py", line 144, in setup
      return distutils.core.setup(**attrs)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\core.py", line 148, in setup
      dist.run_commands()
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 966, in run_commands
      self.run_command(cmd)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
      cmd_obj.run()
    File "C:\Users\abi\PycharmProjects\Project_demo\venv\lib\site-packages\wheel\bdist_wheel.py", line 223, in run
      self.run_command('build')
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
      cmd_obj.run()
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build.py", line 135, in run
      self.run_command(cmd_name)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
      cmd_obj.run()
    File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 135, in run
      self.build_extension(ext)
    File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 172, in build_extension
      subprocess.check_call(cmake_setup, cwd=build_folder)
    File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\subprocess.py", line 364, in check_call
      raise CalledProcessError(retcode, cmd)
  subprocess.CalledProcessError: Command '['cmake', 'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\tools\\python', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\build\\lib.win32-3.8', '-DPYTHON_EXECUTABLE=C:\\Users\\abi\\PycharmProjects\\Project_demo\\venv\\Scripts\\python.exe', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\build\\lib.win32-3.8']' returned non-zero exit status 1.
  ----------------------------------------
  ERROR: Failed building wheel for dlib
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\abi\PycharmProjects\Project_demo\venv\Scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\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\abi\AppData\Local\Temp\pip-record-yxefohdj\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\abi\PycharmProjects\Project_demo\venv\include\site\python3.8\dlib'
         cwd: C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\
    Complete output (82 lines):
    running install
    running build
    running build_py
    package init file 'dlib\__init__.py' not found (or not a regular file)
    warning: build_py: byte-compiling is disabled, skipping.

    running build_ext
    Building extension for Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:20:19) [MSC v.1925 32 bit (Intel)]
    Invoking CMake setup: 'cmake C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\tools\python -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\build\lib.win32-3.8 -DPYTHON_EXECUTABLE=C:\Users\abi\PycharmProjects\Project_demo\venv\Scripts\python.exe -DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\build\lib.win32-3.8'
    -- Building for: NMake Makefiles
    -- The C compiler identification is unknown
    -- The CXX compiler identification is unknown
    CMake Error at CMakeLists.txt:3 (project):
      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 at CMakeLists.txt:3 (project):
      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/abi/AppData/Local/Temp/pycharm-packaging/dlib/build/temp.win32-3.8/Release/CMakeFiles/CMakeOutput.log".
    See also "C:/Users/abi/AppData/Local/Temp/pycharm-packaging/dlib/build/temp.win32-3.8/Release/CMakeFiles/CMakeError.log".
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 223, in <module>
        setup(
      File "C:\Users\abi\PycharmProjects\Project_demo\venv\lib\site-packages\setuptools\__init__.py", line 144, in setup
        return distutils.core.setup(**attrs)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\core.py", line 148, in setup
        dist.run_commands()
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 966, in run_commands
        self.run_command(cmd)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
        cmd_obj.run()
      File "C:\Users\abi\PycharmProjects\Project_demo\venv\lib\site-packages\setuptools\command\install.py", line 61, in run
        return orig.install.run(self)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\install.py", line 545, in run
        self.run_command('build')
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
        cmd_obj.run()
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build.py", line 135, in run
        self.run_command(cmd_name)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
        cmd_obj.run()
      File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 135, in run
        self.build_extension(ext)
      File "C:\Users\abi\AppData\Local\Temp\pycharm-packaging\dlib\setup.py", line 172, in build_extension
        subprocess.check_call(cmake_setup, cwd=build_folder)
      File "C:\Users\abi\AppData\Local\Programs\Python\Python38-32\lib\subprocess.py", line 364, in check_call
        raise CalledProcessError(retcode, cmd)
    subprocess.CalledProcessError: Command '['cmake', 'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\tools\\python', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\build\\lib.win32-3.8', '-DPYTHON_EXECUTABLE=C:\\Users\\abi\\PycharmProjects\\Project_demo\\venv\\Scripts\\python.exe', '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\build\\lib.win32-3.8']' returned non-zero exit status 1.
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'C:\Users\abi\PycharmProjects\Project_demo\venv\Scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\dlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\abi\\AppData\\Local\\Temp\\pycharm-packaging\\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\abi\AppData\Local\Temp\pip-record-yxefohdj\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\abi\PycharmProjects\Project_demo\venv\include\site\python3.8\dlib' Check the logs for full command output.

при попытке установить пакет у меня возникли указанные выше ошибки

Пожалуйста, помогите мне с этим, спасибо надеюсь, я скоро получу ответ Думаю, все наслаждаются праздником короны :)

...