mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 22:44:21 +01: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
|
|
""")
|