GreenCoder90
GreenCoder90

Reputation: 363

Creating an executable from a Pycharm Python Project

enter image description hereHow can I take all scripts and files in my Python project directory and create a single executable. I have tried using this: How do I create an executable file out of a PyCharm project using PyInstaller? but it does not work. I have developed the project in PyCharm and I am using Python 3.4.

enter image description here

Upvotes: 1

Views: 18521

Answers (1)

Fasertio
Fasertio

Reputation: 29

You can use cx_Freeze it's the same way that py2exe and py2app. It supports python 2.7 or highter or you can use Pyinstaller that binds in an executable all the stuff. You can download it using the following command:

pip install pyinstaller 

Or you can download it from the website

Upvotes: 1

Related Questions