def _listVMwareVMsSlot(self): """ Slot to refresh the VMware VMs list. """ self.uiVirtualBoxRadioButton.setChecked(False) from gns3.modules import VMware settings = VMware.instance().settings() if not os.path.exists(settings["vmrun_path"]): QtWidgets.QMessageBox.critical(self, "VMware", "VMware vmrun tool could not be found, VMware or the VIX API (required for VMware player) is probably not installed. You can download it from https://www.vmware.com/support/developer/vix-api/") return self._refreshVMListSlot()
def _listVMwareVMsSlot(self): """ Slot to refresh the VMware VMs list. """ download_url = "https://github.com/GNS3/gns3-gui/releases/download/v{version}/GNS3.VM.VMware.Workstation.{version}.zip".format(version=__version__) self.uiGNS3VMDownloadLinkUrlLabel.setText('The GNS3 VM can <a href="{download_url}">downloaded here</a>.<br>Import the VM in your virtualization software and hit refresh.'.format(download_url=download_url)) self.uiVirtualBoxRadioButton.setChecked(False) from gns3.modules import VMware settings = VMware.instance().settings() if not os.path.exists(settings["vmrun_path"]): QtWidgets.QMessageBox.critical(self, "VMware", "VMware vmrun tool could not be found, VMware or the VIX API (required for VMware player) is probably not installed. You can download it from https://www.vmware.com/support/developer/vix-api/. After installation you need to restart GNS3.") return self._refreshVMListSlot()
def _listVMwareVMsSlot(self): """ Slot to refresh the VMware VMs list. """ self.uiVirtualBoxRadioButton.setChecked(False) from gns3.modules import VMware settings = VMware.instance().settings() if not os.path.exists(settings["vmrun_path"]): QtWidgets.QMessageBox.critical( self, "VMware", "VMware vmrun tool could not be found, VMware or the VIX API (required for VMware player) is probably not installed" ) return self._refreshVMListSlot()