-
|
Do I have to execute this script every time I install new module to update the xml file?? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
In reference to Modules installed by If If |
Beta Was this translation helpful? Give feedback.
In reference to
python3.xmlwhich contains the autocomplete strings, this file has the autocompletion strings at the time of execution of the script.python3.xmlis a static file and there is no auto update for the filepython3.xml. It might be possible to schedule a periodic update using Cron or Window Task Schedular though that is not a builtin option for the script and would require some external setup by the user.Modules installed by
pipare typically located insite-packages. If you have setsettings['import_site'] = 1in the script, then the modules insite-packageswill be processed bypydocwithin the script, which will get the autocomplete strings and be written topython3.xml.If