To share the installation, we decided to work with the docker. For each project, global dependencies are installed inside the container.
We are developing with Python (and Java, but at this time we will only talk about Python;))
When working with Vim (for example), I want to use code completion, but since all the libraries are installed in the container, my vim installation on the host cannot access them. This is true for Java, Javascript, etc., and it is absolutely normal ...
But is there any solution for working with the container, accessing the libraries for the IDE without installing the IDE in the container itself?
source
share