An open API service indexing awesome lists of open source software.

https://github.com/greatdrake/pybuildmanager

compile python projects
https://github.com/greatdrake/pybuildmanager

pyqt python

Last synced: about 1 year ago
JSON representation

compile python projects

Awesome Lists containing this project

README

          

# pyBuildManager
UI Application written in python and PyQt5 for freezing python projects and modules into executables with such python packages as cx_Freeze, PyInstaller and py2exe.


## Before you start
To run the program you need ```PyQt5``` framework installed.
So try this:
```
pip install pyqt5
```
or
```
pip3 install pyqt5
```

Application also uses ```cx_Freeze```, ```PyInstaller``` or ```py2exe```(not supported yet) to build projects and you need those of them installed which you want to use.

```
pip3 install pyinstaller
pip3 install cx_Freeze
pip3 install py2exe
```
**Important:** you must ensure that folders containing scripts from the packages you are working with are added to **PATH** environment variable.

If you have any problems you should check the documentation of these libraries.


## Screenshots

![Alt text](/screenshots/1.png?raw=true)

![Alt text](/screenshots/2.png?raw=true)

![Alt text](/screenshots/3.png?raw=true)

![Alt text](/screenshots/4.png?raw=true)