I don't know how to fix this, but when i run pip install tkvideoplayer, I get this:
Collecting tkvideoplayer
Using cached tkvideoplayer-2.5-py3-none-any.whl.metadata (3.2 kB)
Collecting av==9.1.1 (from tkvideoplayer)
Using cached av-9.1.1.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
╰─> [74 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:
Declare the function as 'noexcept' if you control the definition and you're sure you don't want the function to raise exceptions.
Use an 'int' return type on the function to allow an error code to be returned.
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 type 'const char (void *) except? NULL nogil'.
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'. Exception values are incompatible. Suggest adding 'noexcept' to type 'void (void , int, const char , va_list) except nogil'.
Compiling av\logging.pyx because it changed.
[1/1] Cythonizing av\logging.pyx
Traceback (most recent call last):
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 355, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 325, in _get_build_requires
self.run_setup()
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 507, in run_setup
super(_BuildMetaLegacyBackend, self).run_setup(setup_script=setup_script)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 341, in run_setup
exec(code, locals())
File "", line 156, in
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1154, in cythonize
cythonize_one(args)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\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.
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.
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [74 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:
Declare the function as 'noexcept' if you control the definition and you're sure you don't want the function to raise exceptions.
Use an 'int' return type on the function to allow an error code to be returned.
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 type 'const char (void *) except? NULL nogil'.
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'. Exception values are incompatible. Suggest adding 'noexcept' to type 'void (void , int, const char , va_list) except nogil'.
Compiling av\logging.pyx because it changed.
[1/1] Cythonizing av\logging.pyx
Traceback (most recent call last):
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 355, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 325, in _get_build_requires
self.run_setup()
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 507, in run_setup
super(_BuildMetaLegacyBackend, self).run_setup(setup_script=setup_script)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 341, in run_setup
exec(code, locals())
File "", line 156, in
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1154, in cythonize
cythonize_one(args)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\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.
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.
How do I fix this?
(Sorry for the random code lines, I don't know how to fix that either XD)
Edit: I looked at Issue #24, that's different. I'm able to install av, but not this. Any help?
Edit Again: I can't install av==9.1.1 though, maybe that's av's problem.
I'm gonna call it fixed!
I don't know how to fix this, but when i run
pip install tkvideoplayer
, I get this: Collecting tkvideoplayer Using cached tkvideoplayer-2.5-py3-none-any.whl.metadata (3.2 kB) Collecting av==9.1.1 (from tkvideoplayer) Using cached av-9.1.1.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 ╰─> [74 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:
Use an 'int' return type on the function 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 type 'const char (void *) except? NULL nogil'.
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'. Exception values are incompatible. Suggest adding 'noexcept' to type 'void (void , int, const char , va_list) except nogil'. Compiling av\logging.pyx because it changed. [1/1] Cythonizing av\logging.pyx Traceback (most recent call last): File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 355, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 325, in _get_build_requires
self.run_setup()
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 507, in run_setup
super(_BuildMetaLegacyBackend, self).run_setup(setup_script=setup_script)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\setuptools\build_meta.py", line 341, in run_setup
exec(code, locals())
File "", line 156, in
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1154, in cythonize
cythonize_one( args)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-jg5bqfev\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. 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.
C:\Users\Jacks>pip install "C:\Users\Jacks\Downloads\tkvideoplayer-2.5-py3-none-any.whl" Processing c:\users\jacks\downloads\tkvideoplayer-2.5-py3-none-any.whl Collecting av==9.1.1 (from tkvideoplayer==2.5) Using cached av-9.1.1.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 ╰─> [74 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:
Use an 'int' return type on the function 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 type 'const char (void *) except? NULL nogil'.
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'. Exception values are incompatible. Suggest adding 'noexcept' to type 'void (void , int, const char , va_list) except nogil'. Compiling av\logging.pyx because it changed. [1/1] Cythonizing av\logging.pyx Traceback (most recent call last): File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Programs\Python\Python311\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\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 355, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 325, in _get_build_requires
self.run_setup()
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 507, in run_setup
super(_BuildMetaLegacyBackend, self).run_setup(setup_script=setup_script)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\setuptools\build_meta.py", line 341, in run_setup
exec(code, locals())
File "", line 156, in
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\overlay\Lib\site-packages\Cython\Build\Dependencies.py", line 1154, in cythonize
cythonize_one( args)
File "C:\Users\Jacks\AppData\Local\Temp\pip-build-env-4_9n6e6l\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. 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.
How do I fix this? (Sorry for the random code lines, I don't know how to fix that either XD) Edit: I looked at Issue #24, that's different. I'm able to install av, but not this. Any help? Edit Again: I can't install av==9.1.1 though, maybe that's av's problem. I'm gonna call it fixed!