Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.2k
Closed
Description
Bug report
Bug description:
The_remote_debugging
extension module is missing in the MSI Windows installer:
Python 3.14.0b2 (tags/v3.14.0b2:12d3f88, May 26 2025, 13:55:44) [MSC v.1943 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information.>>> import _remote_debuggingTraceback (most recent call last): File "<python-input-0>", line 1, in <module> import _remote_debuggingModuleNotFoundError: No module named '_remote_debugging'
The.pyd
file is missing from theDLLs
directory in the installation.
The_remote_debugging
moduleis available in installations managed by the new Python Installer:
PS C:\Users\thoma> pyPython 3.14.0b2 (tags/v3.14.0b2:12d3f88, May 26 2025, 13:55:44) [MSC v.1943 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information.>>> import _remote_debugging>>>
The new module needs to be added to the right Tools/msi files.
CPython versions tested on:
3.14
Operating systems tested on:
Windows