Export in Pycharm | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Export in Pycharm

I made a project in Pycharm, which includes python file, some texts files and an excel one. I did a long research in the web for export the project, but I didn't succeeded at all. I am using python 3.6 with Windows 10. Can someone can explain me how to do that, step by step, so I can get the project in an executable project? Thanks, Ayal

7th Oct 2017, 7:23 PM
ayal matas
1 Answer
+ 7
If you want to wrap it into an .exe file, there are several modules able to do that (for Windows). I used py2exe and cx_freeze, but there is also a nuitka and pyinstaller. Prepare for a large bundle, though. All the wrappers include the whole Python environment plus all modules you import into your build.
7th Oct 2017, 8:18 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar