P
P
Padapter2015-12-03 20:33:32
Windows
Padapter, 2015-12-03 20:33:32

Windows 7, PyCharm 5.0.1, how to turn into EXE file?

I wrote a small program, but I would like to run it as a normal program, and not go into Pycharm every time

Answer the question

In order to leave comments, you need to log in

3 answer(s)
N
nirvimel, 2015-12-03
@nirvimel

  1. py2exe
  2. PyInstaller
  3. ExeMaker

V
Vladimir Zhurkin, 2015-12-03
@icCE

You need to use pywin32
Read more here.
habrahabr.ru/post/104589

G
GavriKos, 2015-12-03
@GavriKos

In addition to all of the above, you can run python programs without going into PyCharm. Just run your main file. If the python is in the environment variables, then double-clicking on the file is enough. If not, write a batch file with text like
C:\Python2.7\python.exe main.py and put it next to your main file.
By main-file we mean the file with the hypothetical entry point.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question