This repo consists of python hello-world code with different python package manager
- Native package manager - uses
requirement.txt
file 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.txt
python app.py
pip install pipenv
pipenv install
pipenv run python app.py
pip install poetry
poetry install
poetry run python app.py