Preparing your Virtual Environment: Pipfile
Learn what goes on in Pipfile while preparing the virtual environment.
We'll cover the following...
Pipfile
We have Flask version 1.0.2 installed, which depends on the modules for Click, itsdangerous, Jinja2, and Werkzeug. Also, Jinja2 requires MarkupSafe. Typically, pipenv manages this information, so we don’t need to think about it. The only important part is what goes in the Pipfile:
Press + to interact
[[source]]name = "pypi"url = "https://pypi.org/simple"verify_ssl = true[dev-packages][packages]flask = "*"[requires]python_version = "3.7"
Packages required for deployment are listed under the [packages]
heading, while ...