I'm trying to install the os
Python module on Windows.
In a cmd
console, I typed:
C:\Users\username> pip install os
Collecting os
Could not find a version that satisfies the requirement os (from versions: )
No matching distribution found for os
So I guessed the module was not available on Windows for some reasons, but I found references of it in some SO questions.
Obviously, typing Windows
and os
in Google only gives me answers about Windows itself.
So, how can I install the os
module on Windows?
See Also:
Determining if a given Python module is a built-in module - to learn how to check if a library is built-in and hence doesn't require installing.