diff --git a/scripts/main.py b/scripts/main.py new file mode 100644 index 0000000000..b451e97797 --- /dev/null +++ b/scripts/main.py @@ -0,0 +1,9 @@ +from colorama import init, Style + +# Initialize colorama +init(autoreset=True) + +# Use the bold ANSI style +print(f"""{Style.BRIGHT}Please run: +python -m autogpt +""")