[PYTHON] Migrate from requirements.txt to pipenv

Introduction

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.

procedure

--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

Migrate from requirements.txt to pipenv
Cannot migrate from direct_to_template to TemplateView
Migrate from VS Code to PyCharm
Sum from 1 to 10
The story of moving from Pipenv to Poetry
[AWS] Migrate data from DynamoDB to Aurora MySQL
Poetry-An alternative to Pipenv
Changes from Python 3.0 to Python 3.5
Changes from Python 2 to Python 3.0
Transition from WSL1 to WSL2
From editing to execution
[Python] I started Poetry & Impression that I moved from Pipenv to poetry
Post from Python to Slack
Cheating from PHP to Python
Porting from argparse to hydra
Migrating from Chainer v1 to Chainer v2
Anaconda updated from 4.2.0 to 4.3.0 (python3.5 updated to python3.6)
Migrated from Flask-RESTPlus to Flask-RESTX
Update python-social-auth from 0.1.x to 0.2.x
Switch from python2.7 to python3.6 (centos7)
I want to install a package from requirements.txt with poetry
Connect to sqlite from python
Migrate Qiita articles to GitHub
Migrate Qiita articles to WordPress
Call Matlab from Python to optimize
From Elasticsearch installation to data entry
vtkXMLUnstructuredGridReader Summary (updated from time to time)
vtkOpenFOAMReader Summary (Updated from time to time)
How to use SWIG from waf
Engineer vocabulary (updated from time to time)
Conversion from pdf to txt 1 [pdfminer]
Programming to learn from books May 10
Post from python to facebook timeline
[Lambda] [Python] Post to Twitter from Lambda!
Output from Raspberry Pi to Line
[Introduction] From installing kibana to starting
Convert from pdf to txt 2 [pyocr]
Connect to utf8mb4 database from python
OpenMPI installation from download to pass-through
Tensorflow memo [updated from time to time]
Python (from first time to execution)
Post images from Python to Tumblr
Send commands from Atom to Maya
How to launch Explorer from WSL
Introduction of pipenv (also create requirements.txt)
Programming to learn from books May 7
From Ubuntu 20.04 introduction to environment construction
Ssh connect to GCP from Windows
How to access wikipedia from python
Python to switch from another language
How to convert from .mgz to .nii.gz
pynq-z1 From purchase to operation check
Notes on how to write requirements.txt
Review from git init to git push
Did not change from Python 2 to 3
Update Python on Mac from 2 to 3
The story of moving from Pipenv to Poetry
Migrate from requirements.txt to pipenv