Shivaji Varma
Shivaji Varma

Reputation: 682

How to convert python program to executable [ Python 3.4.2 ]

I'm wanting to convert a python 3.4.2 program into an executable file. I've tried using PyInstaller and Py2exe, But neither is being ported to the python 3.4.2 suite.

Do I have any alternative way to do this?

Upvotes: 1

Views: 7495

Answers (2)

Shivaji Varma
Shivaji Varma

Reputation: 682

Got the solution from an online forum, cx_Freeze is cross-platform and does the same, as that of PyInstaller and it also supports Python 3.4

Upvotes: 2

Kasravnd
Kasravnd

Reputation: 107297

You can use Python Launcher for Windows (new in 3.3).

The Python launcher for Windows is a utility which aids in the location and execution of different Python versions. It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version.

Upvotes: 1

Related Questions