Python Forum
Curses could not find terminal
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Curses could not find terminal
#14
There may be more robust ways to detect if the process uses a terminal. With the psutil module one can write
import psutil
proc = psutil.Process()
if proc.terminal() is None:
    print("This process doesn't use a terminal")
Reply


Messages In This Thread
Curses could not find terminal - by Solstice - Jan-04-2018, 02:18 PM
RE: Curses could not find terminal - by Gribouillis - Jan-04-2018, 04:13 PM
RE: Curses could not find terminal - by Solstice - Jan-04-2018, 04:22 PM
RE: Curses could not find terminal - by Gribouillis - Jan-04-2018, 04:32 PM
RE: Curses could not find terminal - by Solstice - Jan-04-2018, 05:27 PM
RE: Curses could not find terminal - by Gribouillis - Jan-04-2018, 06:25 PM
RE: Curses could not find terminal - by Solstice - Jan-04-2018, 08:02 PM
RE: Curses could not find terminal - by Gribouillis - Jan-04-2018, 08:57 PM
RE: Curses could not find terminal - by Solstice - Jan-05-2018, 01:56 PM
RE: Curses could not find terminal - by Gribouillis - Jan-05-2018, 03:28 PM
RE: Curses could not find terminal - by sparkz_alot - Jan-05-2018, 04:01 PM
RE: Curses could not find terminal - by Gribouillis - Jan-05-2018, 04:23 PM
RE: Curses could not find terminal - by sparkz_alot - Jan-05-2018, 04:56 PM
RE: Curses could not find terminal - by Gribouillis - Jan-06-2018, 07:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  I want to be able to scroll up in curses to see previous text. Caiden 2 2,393 Jul-11-2024, 02:21 PM
Last Post: bsmorgan
  curses issue otalado 2 4,051 Jun-29-2021, 02:07 PM
Last Post: tmz
  How to make curses.border() use A_BOLD atttribute? pjfarley3 0 6,644 Feb-03-2021, 11:22 PM
Last Post: pjfarley3
  Curses script doesn't work wavic 1 5,762 Jan-08-2021, 09:11 PM
Last Post: wavic
  Why aren't all curses panel functions supported in python curses.panel? pjfarley3 2 3,968 Jul-22-2020, 11:08 PM
Last Post: pjfarley3
  curses library autompav96 2 4,326 Mar-02-2019, 02:12 AM
Last Post: woooee
  curses key codes not working jgrillout 0 3,814 Feb-11-2019, 01:46 AM
Last Post: jgrillout
  Pretty table and curses? MuntyScruntfundle 0 3,906 Oct-16-2018, 10:22 AM
Last Post: MuntyScruntfundle
  curses.initscr doesn't work zaphod424 3 11,400 Feb-28-2018, 12:36 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020