Where can I get python27.dll and wxmsw dll

Our current project consists of Python2.3 and wxPython-2.4.1.2. It is working fine. But now we are updating it to Python2.7 and wxPython2.8.12.1. Since I'm new to Python and installation DLLs, I need little attention. The following files for old Python are in my NSIS installation folder: python23.dll wxmsw24h.dll

Since this project was made by a previous programmer, I don’t know where he got these DLLs from or how he created this DLL. I think to make the installer for my new python, I will need the following DLLs: python27.dll wxmsw28h.dll

As I understand it, for wxmsw dll I need to compile wxPython-src, but not sure what I can do for this?

Please let me know how can I get these dlls? If I need to create it, then please let me know how can I create these DLLs?

Thanks in advance.

+4
source share
1 answer

Python DLL:

c:\WINDOWS\system32\python27.dll 

or

 C:\Windows\SysWOW64\python27.dll 

wxPython DLL:

 c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxbase28uh_net_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxbase28uh_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxbase28uh_xml_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_adv_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_aui_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_core_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_gizmos_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_gizmos_xrc_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_gl_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_html_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_media_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_qa_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_richtext_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_stc_vc.dll c:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\wxmsw28uh_xrc_vc.dll 

But if you install Python and wxPython using the installer, you do not need to copy it anywhere unless you are creating a binary. If you are creating a standalone binary, see Blender Comment.

+3
source

Source: https://habr.com/ru/post/1380061/


All Articles