Merge pull request #4683 from PySimpleGUI/Dev-latest

Removing the upgrade and no-cache-dir flags that I had added.
This commit is contained in:
PySimpleGUI 2021-08-29 18:41:02 -04:00 committed by GitHub
commit 437950ca12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()