mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-26 09:24:35 +01:00
Merge pull request #1743 from lonrun/lonrundev
Add run scripts for shell
This commit is contained in:
9
run.sh
Executable file
9
run.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
python scripts/check_requirements.py requirements.txt
|
||||
if [ $? -eq 1 ]
|
||||
then
|
||||
echo Installing missing packages...
|
||||
pip install -r requirements.txt
|
||||
fi
|
||||
python -m autogpt $@
|
||||
read -p "Press any key to continue..."
|
||||
3
run_continuous.sh
Executable file
3
run_continuous.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
argument="--continuous"
|
||||
./run.sh "$argument"
|
||||
Reference in New Issue
Block a user