Installing pyinstaller via pip leads to “failed to create process”

后端 未结 9 2259
时光说笑
时光说笑 2020-12-01 16:23

Does anyone know why pyinstaller immediately fails after installed via pip via anaconda 32bit?

I installed pyinstaller via

9条回答
  •  青春惊慌失措
    2020-12-01 16:26

    This error seems to occur when Python’s (or PyInstaller’s) path contains a space (for example, when one installs Python to the Program Files (x86) directory.)

    I suspect that somewhere in PyInstaller’s source code there are some missing quotation marks.

    Try installing Python in a path without spaces, and installing PyInstaller (via pip) to that path.

提交回复
热议问题