--- a/eric6/Preferences/ConfigurationPages/PipPage.py Wed Sep 30 19:33:21 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/PipPage.py Wed Sep 30 19:34:11 2020 +0200 @@ -35,6 +35,8 @@ # set initial values self.indexEdit.setText(Preferences.getPip("PipSearchIndex")) + self.noCondaCheckBox.setChecked( + Preferences.getPip("ExcludeCondaEnvironments")) def save(self): """ @@ -42,6 +44,8 @@ """ Preferences.setPip( "PipSearchIndex", self.indexEdit.text().strip()) + Preferences.setPip( + "ExcludeCondaEnvironments", self.noCondaCheckBox.isChecked()) def create(dlg):