Add instructions for ANSI colors in terminals

This commit is contained in:
Junior 2024-06-27 10:10:16 -04:00
parent 0b2ffe39a4
commit ede1079052
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -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/)