8000 gh-75608: Add Windows FAQ entry for missing CRT by slateny · Pull Request #92765 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-75608: Add Windows FAQ entry for missing CRT #92765

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 23, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
6 changes: 6 additions & 0 deletions Doc/faq/windows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,9 @@ How do I check for a keypress without blocking?
Use the :mod:`msvcrt` module. This is a standard Windows-specific extension module.
It defines a function ``kbhit()`` which checks whether a keyboard hit is
present, and ``getch()`` which gets one character without echoing it.

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

This can occur on Python 3.5 and later, and on Windows 8.1 or earlier.
Install the `Update for Universal C Runtime <https://support.microsoft.com/en-us/help/3118401/>`_.
0