Update check-dependencies.py
This commit is contained in:
parent
e833640bb9
commit
4064177269
@ -50,6 +50,17 @@ else:
|
|||||||
available = available and False
|
available = available and False
|
||||||
if available:
|
if available:
|
||||||
currentInstallation.append('vcsaDriver')
|
currentInstallation.append('vcsaDriver')
|
||||||
|
# pty emulation (screen driver)
|
||||||
|
print('ptyDriver (screen)')
|
||||||
|
available = True
|
||||||
|
try:
|
||||||
|
import pyte
|
||||||
|
print('pyte: OK')
|
||||||
|
except:
|
||||||
|
print('pyte: FAIL')
|
||||||
|
available = available and False
|
||||||
|
if available:
|
||||||
|
currentInstallation.append('ptyDriver')
|
||||||
|
|
||||||
# BRAILLE
|
# BRAILLE
|
||||||
print('')
|
print('')
|
||||||
@ -87,6 +98,17 @@ except:
|
|||||||
available = available and False
|
available = available and False
|
||||||
if available:
|
if available:
|
||||||
currentInstallation.append('evdevDriver')
|
currentInstallation.append('evdevDriver')
|
||||||
|
# pty emulation (input driver)
|
||||||
|
print('ptyDriver (Input)')
|
||||||
|
available = True
|
||||||
|
try:
|
||||||
|
import pyte
|
||||||
|
print('pyte: OK')
|
||||||
|
except:
|
||||||
|
print('pyte: FAIL')
|
||||||
|
available = available and False
|
||||||
|
if available:
|
||||||
|
currentInstallation.append('ptyDriver')
|
||||||
# SOUND
|
# SOUND
|
||||||
print('')
|
print('')
|
||||||
print('sound driver')
|
print('sound driver')
|
||||||
|
Loading…
Reference in New Issue
Block a user