-1

command:

pip install pyinstaller

Error:

Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pyinstaller/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pyinstaller/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pyinstaller/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pyinstaller/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pyinstaller/

Could not find a version that satisfies the requirement pyinstaller (from versions: )
No matching distribution found for pyinstaller
Anurag Dabas
  • 23,866
  • 9
  • 21
  • 41
maor
  • 1

1 Answers1

0

A similar question How to solve ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443) with pip?

As suggested in the accepted answer of the above question you can use ,

pip install --default-timeout=100 pyinstaller

and if you are using python3 try using,

pip3 install pyinstaller

or

pip3 install --default-timeout=100 pyinstaller

if this does not solve problem try installing it as given in below question,

https://superuser.com/questions/1562975/install-pyinstaller-on-an-offline-computer

Prathamesh
  • 1,064
  • 1
  • 6
  • 16