diff options
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,13 +2,13 @@ if [ -n "$(which pip)" ]; then echo installing deps using pip - pip install openai + pip install "openai>=0.27" exit 0 fi if [ -n "$(which pip3)" ]; then echo installing deps using pip3 - pip3 install openai + pip3 install "openai>=0.27" exit 0 fi |