From ea1d4f4ad0dfe31b3f2790f6eb8e09e277eb915b Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 29 Aug 2021 18:40:23 -0400 Subject: [PATCH] Removing the upgrade and no-cache-dir flags that I had added. --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 57716f2f..4ddca060 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -21046,7 +21046,7 @@ def _copy_files_from_github(): cprint('Installing with the Python interpreter =', python_command, c='white on purple') - sp = execute_command_subprocess(python_command, '-m pip install --upgrade --no-cache-dir', temp_dir.name, pipe_output=True) + sp = execute_command_subprocess(python_command, '-m pip install', temp_dir.name, pipe_output=True) threading.Thread(target=_the_github_upgrade_thread, args=(window, sp), daemon=True).start()