0

I'm beginner on python, I'm developing a Python 3 application on my own computer (LINUX) and I have to give a final standalone version on Windows 64 to my teacher.

My question is how to compile a python program on Windows, what's tools are generally used to programming python on windows and how to handle dependencies module (Sklearn, OpenCV ...etc).

Thanks in advance !

Chanda Korat
  • 2,453
  • 2
  • 19
  • 23
  • after a while i got py2exe to work – WhatsThePoint Apr 05 '17 at 07:03
  • 2
    possible duplicate: [Making a python program executable](http://stackoverflow.com/questions/286441/making-a-python-program-executable) and [py2exe generate single executable file](http://stackoverflow.com/questions/112698/py2exe-generate-single-executable-file) – Jacek Zygiel Apr 05 '17 at 07:47

1 Answers1

0

Check out pyinstaller, or py2exe, which i think is appropriate for windows. Also cx_freeze if you want.

lch
  • 2,028
  • 2
  • 25
  • 46
  • Thanks Leonardo ! py2exe seems to be fine, But if I work on windows how to test my scripts (I don't know how to install modules without PIP). –  Apr 08 '17 at 10:37