Pipfile ◉ (TRENDING)

: Specifies the required Python version for the project.

[[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" Pipfile

| Feature | requirements.txt | Pipfile | | :--- | :--- | :--- | | | Manual (requirements-dev.txt) | Built-in [dev-packages] section | | Deterministic Installs | Requires pip freeze > requirements.txt | Automatic via Pipfile.lock | | Editable & VCS deps | Fragile syntax | Clean, structured JSON-like TOML | | Hashing for Security | Not supported | Yes (SHA256 hashes in lock file) | : Specifies the required Python version for the project

Here's an example Pipfile:

: Running pipenv install automatically updates the Pipfile for you—no more manual pip freeze > requirements.txt . 🚀 Getting Started Pipfile

mkdir my_awesome_project cd my_awesome_project pipenv install requests