Hi,
thanks for this plugin, it works great on Linux on my RasPi but I am having issues on MacOS..
On MacOS theres a bunch of different python installs. For one theres the one from MacOS itself, then theres one that comes with XCode and then usually people like me like to use the one installed via brew install python3.
It seems this plugin is always using the system-installed python in /usr/bin/python while the shell and everything else is using the homebrew-installed /usr/local/bin/python. So when I do pip3 install openai it installs fine but doesn't work in the plugin / in vim.
When I do /usr/bin/pip3 install openai I am getting issues with building, I suppose thats due to the system's python being incompatible with openai or something..
Hi,
thanks for this plugin, it works great on Linux on my RasPi but I am having issues on MacOS..
On MacOS theres a bunch of different python installs. For one theres the one from MacOS itself, then theres one that comes with XCode and then usually people like me like to use the one installed via
brew install python3.It seems this plugin is always using the system-installed python in
/usr/bin/pythonwhile the shell and everything else is using the homebrew-installed/usr/local/bin/python. So when I dopip3 install openaiit installs fine but doesn't work in the plugin / in vim.When I do
/usr/bin/pip3 install openaiI am getting issues with building, I suppose thats due to the system's python being incompatible with openai or something..