I am attempting to pip install termios
module and it gives me the following error
Could not find a version that satisfies the requirement ter
termios
is part of the Python Standard Library, which means it comes with Python. It provides an interface to the POSIX terminal calls of the underlying OS, which means it only applies on POSIX platforms. So...
import termios
in your Python script. If that fails, then your Python install is broken and you should reinstall Python.