I think many people still use requirements.txt
for Python package management.
It's easy to understand, and I think that many people leave it as it is because it appears first when you search.
However, with requiments.txt
, the dependencies between packages cannot be managed, so pipenv and [poetry](https: /) Various package management tools such as /python-poetry.org/) are recommended.
This time, I decided to change from liquidetns.txt to pipenv, so I will summarize the procedure at that time.
--Install pipenv
brew install pipenv
--Migrate from requirements.txt to pipenv
pipenv install -r requirements.txt
#Generate a lock file that defines the dependencies
pipenv lock
Recommended Posts