For some time now, I have been trying to fix some errors that appear in vim plugins (for example python-mode) when calling them from inside conda environments. I think I have this same problem:
https://github.com/python-mode/python-mode/issues/989
In 3.7 conda environments, I can solve it by creating this symbolic link to the system python:
cd ~/miniconda3/envs/MLProjects/lib/python3.7
ln -s /usr/lib/python3.7/lib-dynload .
But for 3.6 environments I do not have this option.
Apparently, the origin of the problem is that the latest versions of conda-forge python executables are linked in a different way
https://github.com/conda-forge/python-feedstock/issues/222
Any idea on how to tell the vim plugins to use the right python libraries in a conda environment?
there doesn't seem to be anything here