I am trying to use pyinstaller
in cmd but I receive error:
C:\\Users\\username>pyinstaller
\'pyinstaller\' is not recognized as an internal
you have to modify your PATH environ to include C:\Users\username\AppData\Local\Programs\Python\Python36-32\Scripts>
if you don't know how to do it
look here
good luck
if you cannot do anything or you have less time, you can make the virtual environment and install pyinstaller there, then generate executable file
Goto - "C:\Users\Username\anaconda3\Scripts" path and copy "pyinstaller.exe" and paste it in the directory where you want to use pyinstaller, it worked for me
Had exactly the same issue:
Python\Python38\Lib\site-packages
pip install pyinstaller
Enter in Administrative Console: pip install pyinstaller
Copy 'pyinstaller.exe' to the folder you have the .py file you want to convert. When you are done, just delete 'pyinstaller.exe'. Good luck.