pipenv with docker compose in PyCharm
At the moment of page publishing, PyCharm does not support pipenv with docker (issue:
As you know, Pipenv install requirements in different paths like /home/vivazzi/.local/share/virtualenvs/vivivys-pxi3oUGW/bin/python
, where vivivys-pxi3oUG
path generate differently in devending different factors. In other hand, Pycharm requires to specify concrete path to interpreter:
Note in this window we can not see generated path to interpreter, so in next window (click by ellipsis) we do not know what we should input:
If you input path to global interpreter (something like: /usr/bin/python
or /usr/local/bin/python
), you can create access to remote interpreter but your...