How do I create linux executable with pycharm

已回答

Could someone please help me out to understand, how to create linux ( raspberry pi ) executable app using pycharm ?

0

Hi Bhavesh Dave! Do you want to make a sample script standalone executable? You need to add a shebang as a first line in the script and make it executable with

chmod +x script.py

 

0

I meant similar to Calibre application, which can be installed and executed.

0

Unfortunately PyCharm only provides quick action to create setup.py - Tools | Create setup.py. Check this answer on stackoverflow about utilities to create executables from Python project: https://stackoverflow.com/a/12059644/2787185 and official docs on installers: https://docs.python.org/3.6/distutils/builtdist.html

0

请先登录再写评论。