Merge pull request #5664 from kamranahmedse/dansholds/add-poetry-content

Add Poetry package manager content
pull/5668/head
dsh 6 months ago committed by GitHub
commit 32b0159d9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      src/data/roadmaps/python/content/105-python-package-managers/103-poetry.md
  2. 1
      src/data/roadmaps/python/content/105-python-package-managers/index.md
  3. 7776
      src/data/roadmaps/python/python.json

@ -0,0 +1,9 @@
# Poetry
Poetry is a dependency management and packaging tool for Python that runs on Windows, macOS, and Linux. Poetry efficiently installs, manages, and updates packages and their dependencies. Poetry seamlessly creates, saves, loads, and switches between project environments on your local computer. It is designed specifically for Python projects, providing a streamlined workflow for managing dependencies, virtual environments, and building packages.
Poetry as a package manager helps you find and install packages. If you need a specific version of a package or a different version of Python, Poetry handles both dependency management and virtual environments effortlessly. With just a few commands, you can set up a completely isolated environment to run a different version of Python or package configuration, while maintaining your usual development environment. Poetry’s lock file ensures consistent installs across different environments, enhancing reproducibility and stability of your projects.
Visit the following resources to learn more:
- [Poetry Docs](https://python-poetry.org/docs/)

@ -4,5 +4,4 @@ Package managers allow you to manage the dependencies (external code written by
`PyPI` and `Pip` are the most common contenders but here are some other options available as well: `PyPI` and `Pip` are the most common contenders but here are some other options available as well:
- [**Poetry**](https://python-poetry.org/) : Manages dependencies via isolation
- [**PIPX**](https://github.com/pypa/pipx) : Isolation-based app deployment, so you don't have to affect the system or user PIP libraries. It enables you to try individual python CLI tools without affecting other dependencies. - [**PIPX**](https://github.com/pypa/pipx) : Isolation-based app deployment, so you don't have to affect the system or user PIP libraries. It enables you to try individual python CLI tools without affecting other dependencies.

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save