diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-04-13 21:47:10 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-04-13 21:47:10 +0200 |
| commit | 711676a1a951c3bbb7ecab79c8754b5a02e840e8 (patch) | |
| tree | 2c130ebf43b802c3227e593d562df5363ebe5495 /install.sh | |
| parent | 97801a0fba2f4bb9409bb7a2b2bfec0344c53838 (diff) | |
| download | vim-ai-711676a1a951c3bbb7ecab79c8754b5a02e840e8.tar.gz | |
removing openai-python from docu
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -1,16 +1,4 @@ #!/bin/bash -if [ -n "$(which pip)" ]; then - echo installing deps using pip - pip install "openai>=0.27" - exit 0 -fi - -if [ -n "$(which pip3)" ]; then - echo installing deps using pip3 - pip3 install "openai>=0.27" - exit 0 -fi - -echo pip or pip3 not found -exit 1 +# this is a legacy script, keeping here in case anyone runs it during updates +echo [vim-ai] nothing to do here, running install.sh script is no longer needed |