# We probably need the following modules.
from settings import settings
from settings import talk
from troubleshooter import error_notify
# Before we launch anything let's troubleshoot the bastard
if not settings.read("VCStudio-is-good")\
or not settings.read("Python-is-good")\
or not settings.read("Language"):
from troubleshooter import troubleshooter
Where the line:
from troubleshooter import error_notify
This line stands before the check for python modules. And the error-notify uses GTK to render the error window. So we need to try moving it below the check.
I see.
In the file [run.py](https://notabug.org/jyamihud/VCStudio/src/master/run.py) there is this
```
# We probably need the following modules.
from settings import settings
from settings import talk
from troubleshooter import error_notify
# Before we launch anything let's troubleshoot the bastard
if not settings.read("VCStudio-is-good")\
or not settings.read("Python-is-good")\
or not settings.read("Language"):
from troubleshooter import troubleshooter
```
Where the line:
```
from troubleshooter import error_notify
```
This line stands before the check for python modules. And the `error-notify` uses GTK to render the error window. So we need to try moving it below the check.
Arch Linux x86_64 does not come pre-installed with python-cairo dependency.
Feature request: Missing dependencies list auto downloader
I see.
In the file run.py there is this
Where the line:
This line stands before the check for python modules. And the
error-notify
uses GTK to render the error window. So we need to try moving it below the check.