简体   繁体   中英

Python official installer missing python27.dll

I installed Python 2.7 32-bit on Windows from official website and it is missing python27.dll. How can I get this DLL?

At least for the ActiveState Python distribution, and in the official Python distribution:

https://docs.python.org/2/faq/windows.html#id7

The dll is in

C:\Windows\System\PythonNN.dll

where NN is the version number. On a 64-bit, a 32 bit dll will be installed here:

%SystemRoot%\SysWoW64

and a running 32 bit application will magically translate this to the proper path, http://en.wikipedia.org/wiki/WoW64

When I link againsy Python27, I use the lib file here:

C:\Python27\libs\python27.lib

It is somewhat disappointing that the dll gets put in system directories since it means that you can have only one 32 bit and one 64 bit distribution with the same version number.

Update:

Note that if you use the Anaconda or Miniconda Python distributions from Continuum Analytics ( http://continuum.io ), they are much more portable in the sense they package the dll along with the rest of the files in the installation.

I deploy Python via source control so can't rely on

C:\Windows\System\PythonNN.dll

To resolve this, I install Python using the msi package and copy the dll into the same directory as the python.exe. I then commit the python folder to source control for our teams to use. Finally, I uninstall Python from my local machine to ensure a clean environment.

I have not noticed an issue with doing this over the past 7 years but would love to learn more about any caveats using this approach.

Download python 27 dll from here and place it in your /Windows folder. You would also need to update the environment variable adding the path of Python's installation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM