hereshem / python-all

Hello world python with different package managers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About this repo

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

Branches

Setup Instruction

Using native install with requirements.txt

  • pip install -r requirements.txt
  • python app.py

Using pipenv library with Pipfile

  • pip install pipenv
  • pipenv install
  • pipenv run python app.py

Using poetry library with pyproject.toml

  • pip install poetry
  • poetry install
  • poetry run python app.py

About

Hello world python with different package managers


Languages

Language:Python 50.1%Language:Dockerfile 49.9%