5 |
5 |
6 """ |
6 """ |
7 Module implementing the conda configuration page. |
7 Module implementing the conda configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from eric7 import Preferences |
10 from eric7 import CondaInterface, Preferences |
11 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
11 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
12 |
12 |
13 from .ConfigurationPageBase import ConfigurationPageBase |
13 from .ConfigurationPageBase import ConfigurationPageBase |
14 from .Ui_CondaPage import Ui_CondaPage |
14 from .Ui_CondaPage import Ui_CondaPage |
15 |
15 |
44 """ |
44 """ |
45 condaExecutable = self.condaExePicker.text() |
45 condaExecutable = self.condaExePicker.text() |
46 if condaExecutable != self.__condaExecutable: |
46 if condaExecutable != self.__condaExecutable: |
47 Preferences.setConda("CondaExecutable", condaExecutable) |
47 Preferences.setConda("CondaExecutable", condaExecutable) |
48 |
48 |
49 from eric7 import CondaInterface |
|
50 |
|
51 CondaInterface.resetInterface() |
49 CondaInterface.resetInterface() |
52 |
50 |
53 |
51 |
54 def create(dlg): |
52 def create(dlg): |
55 """ |
53 """ |