diff --git a/PreReq/VirtualTermianLevel.reg b/PreReq/VirtualTermianLevel.reg new file mode 100644 index 0000000..15c941f Binary files /dev/null and b/PreReq/VirtualTermianLevel.reg differ diff --git a/README.md b/README.md index cb8a719..fa7298d 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,16 @@ This repository is primarily a collection of resources and learning aides for St * The requests module provides web/REST API access * The colorama module provides access to color and cursor positioning in a terminal +* The termcolor module provides access to console text colors as well +* In order to get ANSI colors in windows CMD or Powershell the virtual terminal level must be set to 1 Inside a terminal: ```bash -pip install requests colorama +pip install requests colorama termcolor +``` +Inside an **Administrator** terminal in the `PreReq/` folder: +```bash +reg import VirtualTerminalLevel.reg ``` ## [Python Basics](Python/)