How to Install DLL Files in Windows 7

pythonwindowswindows 7

I just installed python in my computer and set the path successfully. And Now, When i am trying to run a python program from the command prompt it showing the error 'api-ms-win-crt-runtime-l1-1-0.dll'. Then i downloaded the missing files from the Internet but when i am trying to copying the downloaded files into Sys32 folder it showing the error of 'Access Denied'. So, question is how to install the missing dll i.e how to deal with this issue.

Best Answer

How do I install the missing api-ms-win-crt-runtime-l1-1-0.dll?

This DLL is part of the Update for Universal C Runtime in Windows:

The Windows 10 Universal CRT is a Windows operating system component that enables CRT functionality on the Windows operating system. This update allows Windows desktop applications that depend on the Windows 10 Universal CRT release to run on earlier Windows operating systems.

The above link includes full installations instructions, which depend on exactly which version of Windows you have installed.

Related Question