Вижу разные рекомендации по использованию virtualenv, venv, pipenv, conda, etc и всяческих оберток над ними.
Начиная с версии 3.3 часть функционала virtualenv перенесли во встроенный venv и оф. документация рекомендует venv.
Note If you are using Python 3.3 or newer, the venv module is the preferred way to create and manage virtual environments. venv is included in the Python standard library and requires no additional installation. If you are using venv, you may skip this section.
Однако документация к virtualenv говорит, что он богаче своими возможностями.
virtualenv is a tool to create isolated Python environments. Since Python 3.3, a subset of it has been integrated into the standard library under the venv module. Note though, that the venv module does not offer all features of this library (e.g. cannot create bootstrap scripts, cannot create virtual environments for other python versions than the host python, not relocatable, etc.).
Собственно, что предпочтительнее использовать и почему? А также что использовать для установки зависимостей: pipenv, poetry, … ?
Прошу специалистов дать краткие пояснения, чтобы не было каши в голове.