python - Can't install modules 'os' and 'os.path' -


i trying install 'os' module , 'os.path' module on red hat machine. tries following commands.

pip install os yum install os 

but keep gettin following error

could not find version satisfies requirement os.path (from versions: ) no matching distribution found os.path 

i able install other modules using aforementioned command not able install these.

i need install both os , os.path.

using version python 3.4.3

take extensive list of python library 3.4. if it's mentioned there means it's included in original installation of python. more os.path

the reason you're getting specific error because you're trying install doesn't exist. hint os.path (from versions: ) meaning there isn't external package matches "os.path" or proper version of it.


Comments