Difference between revisions of "Fix Python Errors"

From rbachwiki
Jump to navigation Jump to search
(Created page with "==FIX ERROR - The term 'pyinstaller' is not recognized== py -m pip install pyinstaller")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==FIX ERROR - The term 'pyinstaller' is not recognized==
==FIX ERROR - The term 'pyinstaller' is not recognized==
  py -m pip install pyinstaller
  py -m pip install pyinstaller
==ERROR: Could not install packages due to an OSError: [WinError 2] The system cannot find the file specified:==
pip install 'packagename' --user
==[[#top|Back To Top]] - [[Python|Category]]==
[[Category:Python]]

Latest revision as of 13:40, 21 March 2023

FIX ERROR - The term 'pyinstaller' is not recognized

py -m pip install pyinstaller

ERROR: Could not install packages due to an OSError: [WinError 2] The system cannot find the file specified:

pip install 'packagename' --user

Back To Top - Category