skip to Main Content

im trying to install channels-redis using pip install -U pip channels-redis but it cause the following error:

Error:

Using legacy 'setup.py install' for hiredis, since package 'wheel' is not installed.
Installing collected packages: hiredis, async-timeout, aioredis, channels-redis
  Running setup.py install for hiredis ... error
  error: subprocess-exited-with-error

  × Running setup.py install for hiredis did not run successfully.
  │ exit code: 1
  ╰─> [19 lines of output]
      C:UsersAPAAppDataLocalTemppip-install-lvqc1hfxhiredis_65bd53516444439e81ff8540ee5b60d1setup.py:7: DeprecationWarning: the imp module is deprecated in 
favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses
        import sys, imp, os, glob, io
      C:UsersAPADesktopKM-APPKMRepoenvlibsite-packagessetuptoolsdist.py:771: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
        warnings.warn(
      running install
      C:UsersAPADesktopKM-APPKMRepoenvlibsite-packagessetuptoolscommandinstall.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use 
build and pip and other standards-based tools.
        warnings.warn(
      running build
      running build_py
      creating build
      creating buildlib.win-amd64-cpython-310
      creating buildlib.win-amd64-cpython-310hiredis
      copying hiredisversion.py -> buildlib.win-amd64-cpython-310hiredis
      copying hiredis__init__.py -> buildlib.win-amd64-cpython-310hiredis
      copying hiredishiredis.pyi -> buildlib.win-amd64-cpython-310hiredis
      copying hiredispy.typed -> buildlib.win-amd64-cpython-310hiredis
      running build_ext
      building 'hiredis.hiredis' extension
      error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/  
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure

× Encountered error while trying to install package.
╰─> hiredis

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

so after this i tried to install hiredis but it gave me the same error then i updated my pip and tried again but its still the same…any solution how to fix this issue ? i also installed wheel thought maybe it will help

2

Answers


  1. The current latest version of hiredis 2.0 provides wheels for Python 3.6-3.9 but not 3.10 or later. Use lower version of Python.

    Or install Microsoft Visual C++ 14.0 to compile C/C++ extensions.

    Login or Signup to reply.
  2. The current version of redis does not support Python 3.10
    Try using lower versions of python

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search