This repo consists of python hello-world code with different python package manager
- Native package manager - uses
requirement.txtfile for library dependencies - Pipenv package manager - uses
Pipfile - Poetry package manager - uses
pyproject.toml
native-pip- https://github.com/hereshem/python-all/tree/native-pippipfile- https://github.com/hereshem/python-all/tree/pipfilepoetry- https://github.com/hereshem/python-all/tree/poetry
pip install -r requirements.txtpython app.py
pip install pipenvpipenv installpipenv run python app.py
pip install poetrypoetry installpoetry run python app.py