Why am I getting the following error in Python "ImportError: No module named py"? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T22:17:43Z http://stackoverflow.com/feeds/question/489497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py 4 Why am I getting the following error in Python "ImportError: No module named py"? jtbradle http://stackoverflow.com/users/14723 2009-01-28T21:37:27Z 2009-01-28T22:16:04Z <p>I'm a Python newbie, so bear with me :)</p> <p>I created a file called test.py with the contents as follows:</p> <pre><code>test.py import sys print sys.platform print 2 ** 100 </code></pre> <p>I then ran <code>import test.py</code> file in the interpreter to follow an example in my book. When I do this, I get the output with the import error on the end.</p> <pre><code>win32 1267650600228229401496703205376 Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; ImportError: No module named py </code></pre> <p>Why do I get this error and how do I fix it? Thanks!</p> http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489501#489501 4 Answer by Evan Fosmark for Why am I getting the following error in Python "ImportError: No module named py"? Evan Fosmark http://stackoverflow.com/users/49701 2009-01-28T21:39:12Z 2009-01-28T21:39:12Z <p>You don't specify the extension when importing. Just do:</p> <pre><code>import test </code></pre> http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489503#489503 7 Answer by DzinX for Why am I getting the following error in Python "ImportError: No module named py"? DzinX http://stackoverflow.com/users/18745 2009-01-28T21:39:36Z 2009-01-28T21:39:36Z <p>Instead of:</p> <pre><code>import test.py </code></pre> <p>simply write:</p> <pre><code>import test </code></pre> <p>This assumes test.py is in the same directory as the file that imports it.</p> http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489540#489540 2 Answer by cdleary for Why am I getting the following error in Python "ImportError: No module named py"? cdleary http://stackoverflow.com/users/3594 2009-01-28T21:47:51Z 2009-01-28T21:58:50Z <p>As others have mentioned, you don't need to put the file extension in your import statement. Recommended reading is the <a href="http://docs.python.org/tutorial/modules.html" rel="nofollow">Modules section of the Python Tutorial</a>.</p> <p>For a little more background into the error, the interpreter thinks you're trying to import a module named <code>py</code> from inside the <code>test</code> package, since the dot indicates encapsulation. Because no such module exists (and <a href="http://docs.python.org/tutorial/modules.html#packages" rel="nofollow">test isn't even a package</a>!), it raises that error.</p> <p>As indicated in the <a href="http://docs.python.org/reference/simple_stmts.html#the-import-statement" rel="nofollow">more in-depth documentation on the import statement</a> it still executes all the statements in the <code>test</code> module before attempting to import the <code>py</code> module, which is why you get the values printed out.</p> http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489547#489547 2 Answer by Triptych for Why am I getting the following error in Python "ImportError: No module named py"? Triptych http://stackoverflow.com/users/43089 2009-01-28T21:48:36Z 2009-01-28T21:48:36Z <p>This strange-looking error is a result of how Python imports modules. </p> <p><strong>Python sees</strong>: </p> <pre><code>import test.py </code></pre> <p><strong>Python thinks</strong> (simplified a bit):</p> <blockquote> <p>import module test.</p> <ul> <li>search for a test.py in the module search paths</li> <li>execute test.py (where you get your output)</li> <li>import 'test' as name into current namespace</li> </ul> <p>import test.py</p> <ul> <li>search for file test/py.py</li> <li>throw ImportError (no module named 'py') found.</li> </ul> </blockquote> <p>Because python allows dotted module names, it just thinks you have a submodule named <code>py</code> within the <code>test</code> module, and tried to find that. It has no idea you're attempting to import a file.</p>