Dec-13-2024, 03:27 AM
I have installed the latest Python 3.13.1 on my Windows 10 PC.
I'm trying to run program pssh which requires OS.pipe2().
The module OS should have a function called 'pipe2'. The documentation here describes this:
https://docs.python.org/3/library/os.html
Python Vvrsion 3.13.1 is the latest available stable version.
I'm told the OS module is "built in" and cannot be separately upgraded.
I did try upgrading module OS, though:
python -m pip install os --upgrade
ERROR: Could not find a version that satisfies the requirement os (from versions: none)
ERROR: No matching distribution found for os
How can I fix this? I want to get the OS module that matches the documentation.
Thanks.
I'm trying to run program pssh which requires OS.pipe2().
The module OS should have a function called 'pipe2'. The documentation here describes this:
https://docs.python.org/3/library/os.html
Python Vvrsion 3.13.1 is the latest available stable version.
I'm told the OS module is "built in" and cannot be separately upgraded.
I did try upgrading module OS, though:
python -m pip install os --upgrade
ERROR: Could not find a version that satisfies the requirement os (from versions: none)
ERROR: No matching distribution found for os
How can I fix this? I want to get the OS module that matches the documentation.
Thanks.