GaobinChu
Using restore defaults in the preferences will not reset the python helpers path nor restore that file's content.
The DRS still works with the latest version, but there does continue to be a problem finding your iolite_helpers python file. Please run the following bit of python code in the workspace as a whole or by typing the lines into the python console:
from iolite.QtCore import QSettings
print(QSettings().value('Paths/PythonHelpersPath'))
This will tell you the location that it is currently trying to load the helpers file from. If that path does not exist then you have two options:
- Create that path
- Tell iolite to use a different path by running a bit of python:
from iolite.QtCore import QSettings
QSettings().setValue('Paths/PythonHelpersPath', 'C:/Path/Where/You/Want/To/Store/iolite/files')
After confirming that you have a valid path configured, you can restore the current version of the iolite_helpers.py file by going to preferences and clicking the "Site-packages" button in the restore default files section. You'll likely need to restart iolite afterwards.
Alternative to all of this you could run a bit of python to get the first run dialog to appear again which will allow you to configure the path graphically:
from iolite.QtCore import QSettings
QSettings().setValue('FirstRun', True)
Restart iolite and you'll see
and more importantly the next screen:
All the best,