Browse Source

Bump python version for new installation

adaptive-webui-19844
Chocobo1 5 years ago
parent
commit
2e4584578b
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 4
      src/gui/mainwindow.cpp

4
src/gui/mainwindow.cpp

@ -2011,9 +2011,9 @@ void MainWindow::installPython()
setCursor(QCursor(Qt::WaitCursor)); setCursor(QCursor(Qt::WaitCursor));
// Download python // Download python
#ifdef QBT_APP_64BIT #ifdef QBT_APP_64BIT
const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe"; const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1-amd64.exe";
#else #else
const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe"; const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1.exe";
#endif #endif
Net::DownloadManager::instance()->download( Net::DownloadManager::instance()->download(
Net::DownloadRequest(installerURL).saveToFile(true) Net::DownloadRequest(installerURL).saveToFile(true)

Loading…
Cancel
Save