Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install the os module on Windows? [duplicate]

Tags:

python

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 ?

like image 558
Wazam Avatar asked Dec 28 '17 16:12

Wazam


1 Answers

OS is python's standard library. So no need to download it.

like image 119
Praveen Meghwal Avatar answered Oct 27 '22 13:10

Praveen Meghwal