<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[CDB] ModuleNotFoundError: No module named &#x27;typing&#x27;]]></title><description><![CDATA[<p dir="auto">I use Qt Creator 19.0.2 portable build (<a href="https://github.com/qt-creator/qt-creator/releases/download/v19.0.2/qtcreator-windows-x64-msvc-19.0.2.7z" target="_blank" rel="noopener noreferrer nofollow ugc">qtcreator-windows-x64-msvc-19.0.2.7z</a>). I copied <a href="qtcreatorcdbext-windows-x64-msvc-19.0.2.7z">qtcreatorcdbext</a> contents to &lt;Qt folder&gt;/lib. When I launch qt creator start debugging and stop on breakpoint I get</p>
<pre><code>[CDB] DEBUG: 5:sys.path.insert(1, '...\\QtCreator-19.0.2.7\\share\\qtcreator\\debugger')
 [CDB] DEBUG: 6:from cdbbridge import Dumper
 [CDB] Traceback (most recent call last):
 [CDB]   File "&lt;string&gt;", line 1, in &lt;module&gt;
 [CDB]   File "...\QtCreator-19.0.2.7\share\qtcreator\debugger\cdbbridge.py", line 4, in &lt;module&gt;
 [CDB]     import inspect
 [CDB]   File "D:/a/qt-creator/qt-creator/build/build-qtcreatorcdbext/x64-bld-prefix/src/x64-bld-build/python-lib\inspect.py", line 163, in &lt;module&gt;
 [CDB] ModuleNotFoundError: No module named 'typing'
 [CDB] DEBUG: 7:print(dir())
 [CDB] ['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'cdbext', 'sys']
 [CDB] DEBUG: 8:theDumper = Dumper()
 [CDB] Traceback (most recent call last):
 [CDB]   File "&lt;string&gt;", line 1, in &lt;module&gt;
 [CDB] NameError: name 'Dumper' is not defined
</code></pre>
<p dir="auto">So <a href="http://inspect.py" target="_blank" rel="noopener noreferrer nofollow ugc">inspect.py</a> imports <a href="http://typing.py" target="_blank" rel="noopener noreferrer nofollow ugc">typing.py</a> that is not exists. So cdbbridge and embedded python library is not compete.<br />
I tried:</p>
<ol>
<li>install qtcreatorcdbext other version (same error);</li>
<li>install python and specify PYTHONPATH and PYTHONHOME env variables (same error);</li>
<li>copy python 313 library to cdbbridge folder manually (version error);</li>
</ol>
<p dir="auto">I hope that you will explain to me the reason for the error and explain what I missed during the installation process (I am sure that the installation is not complete).</p>
<p dir="auto">Thx in advance)</p>
]]></description><link>https://forum.qt.io/topic/165102/cdb-modulenotfounderror-no-module-named-typing</link><generator>RSS for Node</generator><lastBuildDate>Mon, 21 Sep 2026 14:18:55 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/165102.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 Sep 2026 15:37:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [CDB] ModuleNotFoundError: No module named &#x27;typing&#x27; on Sat, 19 Sep 2026 19:54:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/xxproner">@<bdi>Xxproner</bdi></a> It looks like <a href="http://typing.py" target="_blank" rel="noopener noreferrer nofollow ugc">typing.py</a> is excluded, see <a href="https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33</a></p>
<p dir="auto">It's a one line change. Do report the issue at <a href="https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234" target="_blank" rel="noopener noreferrer nofollow ugc">https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234</a></p>
<p dir="auto">You can:</p>
<ol>
<li>Fork <a href="https://github.com/qt-creator/qt-creator" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/qt-creator/qt-creator</a></li>
<li>Enable GitHub Actions</li>
<li>In your fork do the one line change</li>
<li>Push a release tag, and you'll have your own binaries!</li>
</ol>
]]></description><link>https://forum.qt.io/post/840204</link><guid isPermaLink="true">https://forum.qt.io/post/840204</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Sat, 19 Sep 2026 19:54:06 GMT</pubDate></item><item><title><![CDATA[Reply to [CDB] ModuleNotFoundError: No module named &#x27;typing&#x27; on Mon, 21 Sep 2026 10:09:18 GMT]]></title><description><![CDATA[<p dir="auto">Thx for explanation what the problem was. That is what I need.<br />
Marked topic as solved</p>
]]></description><link>https://forum.qt.io/post/840213</link><guid isPermaLink="true">https://forum.qt.io/post/840213</guid><dc:creator><![CDATA[Xxproner]]></dc:creator><pubDate>Mon, 21 Sep 2026 10:09:18 GMT</pubDate></item><item><title><![CDATA[Reply to [CDB] ModuleNotFoundError: No module named &#x27;typing&#x27; on Sun, 20 Sep 2026 18:55:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a> said in <a href="/post/840204">[CDB] ModuleNotFoundError: No module named 'typing'</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/xxproner">@<bdi>Xxproner</bdi></a> It looks like <a href="http://typing.py" target="_blank" rel="noopener noreferrer nofollow ugc">typing.py</a> is excluded, see <a href="https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33</a></p>
<p dir="auto">It's a one line change. Do report the issue at <a href="https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234" target="_blank" rel="noopener noreferrer nofollow ugc">https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234</a></p>
</blockquote>
<p dir="auto">A patch has been submitted :-)</p>
]]></description><link>https://forum.qt.io/post/840208</link><guid isPermaLink="true">https://forum.qt.io/post/840208</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Sun, 20 Sep 2026 18:55:59 GMT</pubDate></item><item><title><![CDATA[Reply to [CDB] ModuleNotFoundError: No module named &#x27;typing&#x27; on Sat, 19 Sep 2026 19:54:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/xxproner">@<bdi>Xxproner</bdi></a> It looks like <a href="http://typing.py" target="_blank" rel="noopener noreferrer nofollow ugc">typing.py</a> is excluded, see <a href="https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/qt-creator/qt-creator/blob/master/cmake/CreatePythonXY.cmake#L33</a></p>
<p dir="auto">It's a one line change. Do report the issue at <a href="https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234" target="_blank" rel="noopener noreferrer nofollow ugc">https://qt-project.atlassian.net/secure/CreateIssue.jspa?pid=10234</a></p>
<p dir="auto">You can:</p>
<ol>
<li>Fork <a href="https://github.com/qt-creator/qt-creator" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/qt-creator/qt-creator</a></li>
<li>Enable GitHub Actions</li>
<li>In your fork do the one line change</li>
<li>Push a release tag, and you'll have your own binaries!</li>
</ol>
]]></description><link>https://forum.qt.io/post/840204</link><guid isPermaLink="true">https://forum.qt.io/post/840204</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Sat, 19 Sep 2026 19:54:06 GMT</pubDate></item><item><title><![CDATA[Reply to [CDB] ModuleNotFoundError: No module named &#x27;typing&#x27; on Fri, 18 Sep 2026 22:33:14 GMT]]></title><description><![CDATA[<p dir="auto">Hi and welcome to devnet,</p>
<p dir="auto">AFAIK, the typing module is part of Python's standard library.</p>
<p dir="auto">Can you try with an official release ?</p>
]]></description><link>https://forum.qt.io/post/840189</link><guid isPermaLink="true">https://forum.qt.io/post/840189</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Fri, 18 Sep 2026 22:33:14 GMT</pubDate></item></channel></rss>