Configuring Pycharm to run Pyinstaller

后端 未结 7 1568
情深已故
情深已故 2020-12-13 11:01

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

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-13 11:33

    output for pyinstaller on pycharm windows 8

    argumento                                                        fails
    ---                                                                V
    -y -F                                                              V
    -y -F --onefile                                                    V
    -y -F --onefile -c $FileName$                                      F (default path)
    -y -F --onefile -w $FileName$                                      F (default path, no console neither cmd)
    -y -F --onefile -c $FileName$ --distpath $FileDir$                 F (path as project)
    -y -F --onefile -c $FileName$ --distpath $FileRelativePath$        V
    
    
    best selection -> line four or six
    

提交回复
热议问题