RealtimeSTT icon indicating copy to clipboard operation
RealtimeSTT copied to clipboard

ModuleNotFoundError: No module named 'RealtimeSTT'

Open TheMancha opened this issue 10 months ago • 4 comments

Hi! After having issues installing RealTimeSTT (I had errors with a "wheel" (I'm not a programmer)), I was able to run the RealtimeSTT installer without error messages.

But when I try to run realtimestt_test.py, I get this error:

System initializing, please wait Traceback (most recent call last): File "C:\Users\rober\Documents\MyLinguistica\RealTimeTTS\RealtimeSTT-master\RealtimeSTT-master\tests\realtimestt_test.py", line 49, in from RealtimeSTT import AudioToTextRecorder ModuleNotFoundError: No module named 'RealtimeSTT'

Any idea why?

Thanks!

TheMancha avatar Feb 10 '25 02:02 TheMancha

This is the error of the "Wheel" I'm having:

Collecting av==10.* (from faster-whisper>=0.7.1->RealtimeSTT==0.1.4) Using cached av-10.0.0.tar.gz (2.4 MB) Installing build dependencies ... done Getting requirements to build wheel ... error error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─> [78 lines of output] Compiling av\buffer.pyx because it changed. [1/1] Cythonizing av\buffer.pyx Compiling av\bytesource.pyx because it changed. [1/1] Cythonizing av\bytesource.pyx Compiling av\descriptor.pyx because it changed. [1/1] Cythonizing av\descriptor.pyx Compiling av\dictionary.pyx because it changed. [1/1] Cythonizing av\dictionary.pyx Compiling av\enum.pyx because it changed. [1/1] Cythonizing av\enum.pyx Compiling av\error.pyx because it changed. [1/1] Cythonizing av\error.pyx Compiling av\format.pyx because it changed. [1/1] Cythonizing av\format.pyx Compiling av\frame.pyx because it changed. [1/1] Cythonizing av\frame.pyx performance hint: av\logging.pyx:232:5: Exception check on 'log_callback' will always require the GIL to be acquired. Possible solutions: 1. Declare 'log_callback' as 'noexcept' if you control the definition and you're sure you don't want the function to raise exceptions. 2. Use an 'int' return type on 'log_callback' to allow an error code to be returned.

  Error compiling Cython file:
  ------------------------------------------------------------
  ...
  cdef const char *log_context_name(void *ptr) nogil:
      cdef log_context *obj = <log_context*>ptr
      return obj.name

  cdef lib.AVClass log_class
  log_class.item_name = log_context_name
                        ^
  ------------------------------------------------------------

  av\logging.pyx:216:22: Cannot assign type 'const char *(void *) except? NULL nogil' to 'const char *(*)(void *) noexcept nogil'. Exception values are incompatible. Suggest adding 'noexcept' to the type of 'log_context_name'.

  Error compiling Cython file:
  ------------------------------------------------------------
  ...

  # Start the magic!
  # We allow the user to fully disable the logging system as it will not play
  # nicely with subinterpreters due to FFmpeg-created threads.
  if os.environ.get('PYAV_LOGGING') != 'off':
      lib.av_log_set_callback(log_callback)
                              ^
  ------------------------------------------------------------

  av\logging.pyx:351:28: Cannot assign type 'void (void *, int, const char *, va_list) except * nogil' to 'av_log_callback' (alias of 'void (*)(void *, int, const char *, va_list) noexcept nogil'). Exception values are incompatible. Suggest adding 'noexcept' to the type of 'log_callback'.
  Compiling av\logging.pyx because it changed.
  [1/1] Cythonizing av\logging.pyx
  Traceback (most recent call last):
    File "C:\Users\rober\Documents\MyLinguistica\RealTimeTTS\RealtimeSTT-master\RealtimeSTT-master\example_app\test_env\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 353, in <module>
      main()
      ~~~~^^
    File "C:\Users\rober\Documents\MyLinguistica\RealTimeTTS\RealtimeSTT-master\RealtimeSTT-master\example_app\test_env\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 335, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
                               ~~~~^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\rober\Documents\MyLinguistica\RealTimeTTS\RealtimeSTT-master\RealtimeSTT-master\example_app\test_env\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 118, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\setuptools\build_meta.py", line 334, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=[])
             ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\setuptools\build_meta.py", line 304, in _get_build_requires
      self.run_setup()
      ~~~~~~~~~~~~~~^^
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\setuptools\build_meta.py", line 522, in run_setup
      super().run_setup(setup_script=setup_script)
      ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in run_setup
      exec(code, locals())
      ~~~~^^^^^^^^^^^^^^^^
    File "<string>", line 157, in <module>
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1154, in cythonize
      cythonize_one(*args)
      ~~~~~~~~~~~~~^^^^^^^
    File "C:\Users\rober\AppData\Local\Temp\pip-build-env-ir1bi0wg\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1321, in cythonize_one
      raise CompileError(None, pyx_file)
  Cython.Compiler.Errors.CompileError: av\logging.pyx
  [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.

[notice] A new release of pip is available: 24.3.1 -> 25.0.1 [notice] To update, run: python.exe -m pip install --upgrade pip error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

TheMancha avatar Feb 10 '25 02:02 TheMancha

try use [email protected]

mrzxc avatar Feb 10 '25 14:02 mrzxc

try use [email protected]

I have 3.10.9. Will that one work?

When I open realtimestt_test.py in the tests folder, I get this:

System initializing, please wait ╭───────────────────────────────────────────────── Waiting for Input ──────────────────────────────────────────────────╮ │ Say something... │ ╰──────────────────────

I start talking but nothing happens.

TheMancha avatar Feb 10 '25 20:02 TheMancha

I discovered in other Issue here that I had to activate "Stereo Mix" in my Windows 11. I did it, and I had an error. The solution is here:

https://github.com/KoljaB/RealtimeSTT/issues/178

After this, the script is working. Thanks!

Is there a way to transcribe in Spanish?

TheMancha avatar Feb 10 '25 20:02 TheMancha