Saadmairaj / tkterminal

Terminal widget for Tkinter library.
https://pypi.org/project/tkterminal
Apache License 2.0
58 stars 6 forks source link

TypeError: '<=' not supported between instances of 'int' and 'NoneType' #15

Closed wndkx closed 11 months ago

wndkx commented 1 year ago

When I tried to write /bin/bash or /bin/zsh or sudo su, this error happened

wndkx commented 1 year ago

ok

lebao3105 commented 11 months ago

From README.md:

Command that requires input.

The tkterminal is using subprocess python module where the input can only be passed before running the command and cannot be passed after the command has ran.

So bash, sh, sudo and any other commands that require inputs will not work in TkTerminal

wndkx commented 11 months ago

thank you