Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.02 KB

README.md

File metadata and controls

24 lines (16 loc) · 1.02 KB

PythonC

PythonC is a Python Compiler which converts Python Files to Executables. It uses a different way of compiling from PyInstaller, which makes the Executable file not as large as the one that PyInstaller makes. It is not like you traditional compiler like gcc, though, you still need the Python 3 Interpreter. The only thing that it does is that it allows you to run your Python File with ./ and makes it not text. Currently only for Linux with sudo.

Advantages

  • Run a Python file as ./ without python3 prefix
  • Smaller file than the one that PyInstaller makes
  • Can do everything that is included in Python

Disadvantages

  • You still need Python 3 interpreter in order to run the Executable File (Will download automatically if it doesn't find a Python interpreter)
  • No Windows Support Yet (WSL Supported)

Roadmap

  • Base
  • Fix Bugs Found
  • Requirements
  • Windows and macOS Support (WSL Already Supported)

To Install

Go to Tags tab and click the latest release. Instructions are now on screen.