mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
12 lines
169 B
Python
12 lines
169 B
Python
from colorama import Style, init
|
|
|
|
# Initialize colorama
|
|
init(autoreset=True)
|
|
|
|
# Use the bold ANSI style
|
|
print(
|
|
f"""{Style.BRIGHT}Please run:
|
|
python -m autogpt
|
|
"""
|
|
)
|