<?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[Python Module Not Found]]></title><description><![CDATA[<p dir="auto">So I am new to NPP and I am trying to use it as my main code editor for Python. However, I am having trouble importing numpy and seeing its auto-completion. Below is the code that I have already.</p>
<p dir="auto">print(‘Hello World’)</p>
<p dir="auto">import numpy as np</p>
<p dir="auto">np.</p>
<p dir="auto">After the np., I would like to see suggestions for different numpy methods. When I try to run the code there is an error on the import numpy as np line. The error is shown below.</p>
<p dir="auto">ImportError:<br />
Importing the multiarray numpy extension module failed.  Most<br />
likely you are trying to import a failed build of numpy.<br />
If you’re working with a numpy git repo, try <code>git clean -xdf</code> (removes all<br />
files not under version control).  Otherwise reinstall numpy.</p>
<p dir="auto">Original error was: DLL load failed: The specified module could not be found.</p>
<p dir="auto">Does anybody have any suggestions?</p>
<p dir="auto">Thank you!</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/16878/python-module-not-found</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 12:37:57 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/16878.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 04 Jan 2019 20:07:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Python Module Not Found on Fri, 04 Jan 2019 21:28:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a></p>
<blockquote>
<p dir="auto">From my vague knowledge of LSP (I’ve run across the term a few times, but never used an LSP-enabled system), I think that’s one of the problems that LSP addresses, but I’m not sure.</p>
</blockquote>
<p dir="auto">exactly, the goal is to have the <em>“language”</em> responsible to provide such information<br />
instead of reinventing the wheel by every editor. LSP defines just the protocol how<br />
a communication of a client and a server has to work, the editor implements<br />
the client part whereas some other instance provides the server part.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/38041</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/38041</guid><dc:creator><![CDATA[Eko palypse]]></dc:creator><pubDate>Fri, 04 Jan 2019 21:28:33 GMT</pubDate></item><item><title><![CDATA[Reply to Python Module Not Found on Fri, 04 Jan 2019 20:56:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14114">@Ryan-DeVine</a> ,</p>
<p dir="auto">Regarding the auto-completion: yeah, that would be awesome.  Can you imagine how difficult the task would be of implementing such auto-completion for <em>all</em> the programming languages that Notepad++ natively supports (see the Language menu to see how many there are).  From my vague knowledge of LSP (I’ve run across the term a few times, but never used an LSP-enabled system), I think that’s one of the problems that LSP addresses, but I’m not sure.</p>
<p dir="auto">For a specific use case (for example, just Python), someone might be able to code up a plugin or automation script (*) to do it, using something like, "check the current filetype: if it’s not python, exit the script; otherwise, parse this file and all the <code>import</code>ed modules looking for functions and methods that it currently has access to; once that list is built, edit the AUTOCOMPLETE table to include those functions/methods; repeat <em>ad infinitum</em>.  But that’s a pretty big task, too.</p>
<p dir="auto">*: there’s even a PythonScript plugin, where a python2.7 dll gets loaded into Notepad++, and gives that specific instance of python access to the internals of Notepad++.  That would be pretty meta, making a python auto-complete gizmo that’s written in python, running inside Notepad++, which you could use while editing your other PythonScript scripts from inside of Notepad++. 🤯</p>
]]></description><link>https://community.notepad-plus-plus.org/post/38039</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/38039</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Fri, 04 Jan 2019 20:56:17 GMT</pubDate></item><item><title><![CDATA[Reply to Python Module Not Found on Fri, 04 Jan 2019 20:14:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14114">@Ryan-DeVine</a> said:</p>
<blockquote>
<p dir="auto">After the np., I would like to see suggestions for different numpy methods.</p>
</blockquote>
<p dir="auto">Unfortunately, N++ doesn’t work that way with it.</p>
<blockquote>
<p dir="auto">When I try to run the code there is an error on the import numpy as np line</p>
</blockquote>
<p dir="auto">Well, that’s <em>not</em> Notepad++ related so this isn’t the best place to ask it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/38033</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/38033</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 04 Jan 2019 20:14:14 GMT</pubDate></item><item><title><![CDATA[Reply to Python Module Not Found on Fri, 04 Jan 2019 20:13:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14114">@Ryan-DeVine</a></p>
<p dir="auto">the first question would be if you have numpy installed?<br />
The second, how do you run the script? Via run menu? NppExec? PythonScript??</p>
<p dir="auto">And autocompletion, most likely doesn’t work as expected as there is no such thing<br />
like LSP client available yet.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/38031</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/38031</guid><dc:creator><![CDATA[Eko palypse]]></dc:creator><pubDate>Fri, 04 Jan 2019 20:13:30 GMT</pubDate></item></channel></rss>