diff options
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..ed2d5b5 --- /dev/null +++ b/install.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +if [ -z "$(which pip)" ]; then + echo pip not found + exit 1 +fi + +echo installing deps using pip +pip install openai |