Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.07 KB

run_and_build.md

File metadata and controls

29 lines (18 loc) · 1.07 KB

Running from source and creating a portable build

README README

Running from source code

To run Process Governor from source code, follow these steps:

  1. Clone this repository.
  2. Install the required dependencies using pip: pip install -r requirements.txt
  3. Run the process-governor.py script with administrative privileges: python process-governor.py
  4. Configure the rules for processes and services.

(back to top)

Creating a portable build

You can create a portable version of the program using PyInstaller. Follow these steps to build the portable version:

  1. Install PyInstaller using pip install pyinstaller.
  2. Run the python build_portable.py script.
  3. After the script completes, you will find the portable build in the dist folder.

Now you have a portable version of the program that you can use without installation.

(back to top)