Ofir
08/26/2022, 1:28 PMJoao Moniz
08/26/2022, 2:13 PMpip install
something else as well already.
Maybe a better approach could be to use poetry or even a Docker image, so everybody has the same environment. But your use case might not apply to this 🙂Ofir
08/26/2022, 5:10 PMJoao Moniz
08/27/2022, 11:44 AMpip
) but with some advantages like avoiding dependencies conflict between different python packages. It's very easy to install and to use, and poetry will create a virtual environment by default for each project that you have (you can use this option to make it in-project). The only thing that poetry won't do is to manage the Python version your team is using, for that you can use pyenv
for example if needed.
So you can use only Poetry, you can use only Docker, or you can use Docker + Poetry. Whatever fits better for your project/team needsOfir
08/27/2022, 11:46 AM