From ede10790528f32aa502a3aa6952b7978cfe8d096 Mon Sep 17 00:00:00 2001 From: Junior Date: Thu, 27 Jun 2024 10:10:16 -0400 Subject: [PATCH] Add instructions for ANSI colors in terminals --- PreReq/VirtualTermianLevel.reg | Bin 0 -> 220 bytes README.md | 8 +++++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 PreReq/VirtualTermianLevel.reg diff --git a/PreReq/VirtualTermianLevel.reg b/PreReq/VirtualTermianLevel.reg new file mode 100644 index 0000000000000000000000000000000000000000..15c941f483204274bcde3288a8ff0a1b6847a25e GIT binary patch literal 220 zcmXAj!3x4a3`E~q@E=M)K=j~6@FaqucvxFStcXyNg}Q}qwfOVuG!nApWytJ&KLiGC)$#Ub9R~? xg_Qm}>aFBgaJJi2?q2RKPp(oj`|F`yFy4q?>WY-PQgxQ8WM&Ea6#tr-+YfVrB{={9 literal 0 HcmV?d00001 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/)