22 lines
461 B
Python
Executable File
22 lines
461 B
Python
Executable File
#!/usr/bin/env python3
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
novelWriter – Terminal Start Script
|
||
===================================
|
||
The main start script for the terminal
|
||
"""
|
||
|
||
import sys
|
||
|
||
try:
|
||
import PyQt5.QtWidgets # noqa: F401
|
||
import PyQt5.QtGui # noqa: F401
|
||
import PyQt5.QtCore # noqa: F401
|
||
except Exception:
|
||
print("ERROR: Failed to load dependency python3-pyqt5")
|
||
sys.exit(1)
|
||
|
||
if __name__ == "__main__":
|
||
import nw
|
||
nw.main(sys.argv[1:])
|