Python Forum
export project to an installable software in Pycharm - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: export project to an installable software in Pycharm (/thread-38471.html)



export project to an installable software in Pycharm - jalal0034 - Oct-17-2022

Hi everybody
How can create an installable software with all needed files and packages in Pycharm ?


RE: export project to an installable software in Pycharm - snippsat - Oct-17-2022

(Oct-17-2022, 12:25 PM)jalal0034 Wrote: How can create an installable software with all needed files and packages in Pycharm ?
I would leave Editors completely out of this task,do it all from command line.
In this post i make a basic package using Setuptools.
Can look at How to create a Python package in 2022

Can look at this Thread i did write 5-years ago,but still giive an ok overview,
There also stuff like PyInstaller to take need of people having Python installed out of the picture.
Pyinstaller can be combined with eg Nullsoft, Inno Setup.


RE: export project to an installable software in Pycharm - deanhystad - Oct-17-2022

PyCharm can help you make the setup.py file. Everything else is built the same regardless of what editor or IDE you are using.

https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000591184-How-do-I-create-linux-executable-with-pycharm-