Skip to main content

Pipenv

Pipenv Notes

·400 words·2 mins
Why Pipenv # When maintaining many Python projects, different projects might use different versions of the same Python libraries. Not using a virtual environment and installing all Python modules directly on your machine will lead to version conflicts. In the past, the mechanism of virtualenv + requirements.txt allowed different projects to use different versions of the same package, and also enabled new developers or production environments to quickly install the packages required by the project.