Removing the upgrade and no-cache-dir flags that I had added.

This commit is contained in:
PySimpleGUI 2021-08-29 18:40:23 -04:00
parent a7bc5c271e
commit ea1d4f4ad0
1 changed files with 1 additions and 1 deletions

View File

@ -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()