mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-01 10:24:56 -05:00
10 lines
163 B
Python
10 lines
163 B
Python
from colorama import init, Style
|
|
|
|
# Initialize colorama
|
|
init(autoreset=True)
|
|
|
|
# Use the bold ANSI style
|
|
print(f"""{Style.BRIGHT}Please run:
|
|
python -m autogpt
|
|
""")
|