Yes I want to create a run configuration in PyCharm to run Pyinstaller and get my executable. According to the Pyinstaller documentation you should be able to locate an pyth
For those of us on Windows with Anaconda trying to figure this out, I found it easiest to just set up a Bash Configuration (I believe you need the BashSupport plugin for this), and set:
pyinstaller
(assuming pyinstaller is in your path, if not, the full path)C:\Windows\system32\cmd.exe
(yes, a bash configuration can just use the standard command program)/C
script_name.py
(along with any other pyinstaller arguments)C:\Path\To\Script